From 296ab786eed237b59f76f6411e895cc1e3ce14ab Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Fri, 24 Mar 2017 15:01:36 +0100 Subject: mailmap: use Michael J Gruber's new address Map both old addresses to the new, hopefully more permanent one. Signed-off-by: Michael J Gruber Signed-off-by: Michael J Gruber Signed-off-by: Junio C Hamano diff --git a/.mailmap b/.mailmap index ab59b2f..c44cf67 100644 --- a/.mailmap +++ b/.mailmap @@ -151,7 +151,8 @@ Matthias Kestenholz Matthias Urlichs Matthias Urlichs Michael Coleman -Michael J Gruber +Michael J Gruber +Michael J Gruber Michael S. Tsirkin Michael S. Tsirkin Michael S. Tsirkin -- cgit v0.10.2-6-g49f6 From 8f9aeb0d36c6cbfb849946bb272fa0d3c4611547 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 24 Mar 2017 12:59:15 -0700 Subject: Git 2.12.2 Signed-off-by: Junio C Hamano diff --git a/Documentation/RelNotes/2.12.2.txt b/Documentation/RelNotes/2.12.2.txt index 9efc348..4419397 100644 --- a/Documentation/RelNotes/2.12.2.txt +++ b/Documentation/RelNotes/2.12.2.txt @@ -58,4 +58,26 @@ Fixes since v2.12.1 ignore anything after '>' when picking addresses, to allow non-address cruft like " # stable 4.4" after the address. + * "git push" had a handful of codepaths that could lead to a deadlock + when unexpected error happened, which has been fixed. + + * Code to read submodule..ignore config did not state the + variable name correctly when giving an error message diagnosing + misconfiguration. + + * "git ls-remote" and "git archive --remote" are designed to work + without being in a directory under Git's control. However, recent + updates revealed that we randomly look into a directory called + .git/ without actually doing necessary set-up when working in a + repository. Stop doing so. + + * The code to parse the command line "git grep ... + [[--] ...]" has been cleaned up, and a handful of bugs + have been fixed (e.g. we used to check "--" if it is a rev). + + * The code to parse "git -c VAR=VAL cmd" and set configuration + variable for the duration of cmd had two small bugs, which have + been fixed. + This supersedes jc/config-case-cmdline topic that has been discarded. + Also contains various documentation updates and code clean-ups. diff --git a/Documentation/git.txt b/Documentation/git.txt index 25560f6..88c39d3 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -44,9 +44,10 @@ unreleased) version of Git, that is available from the 'master' branch of the `git.git` repository. Documentation for older releases are available here: -* link:v2.12.1/git.html[documentation for release 2.12.1] +* link:v2.12.2/git.html[documentation for release 2.12.2] * release notes for + link:RelNotes/2.12.2.txt[2.12.2]. link:RelNotes/2.12.1.txt[2.12.1]. link:RelNotes/2.12.0.txt[2.12]. diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index d18eb6d..e83f591 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v2.12.1 +DEF_VER=v2.12.2 LF=' ' -- cgit v0.10.2-6-g49f6