]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Git 2.12.2 v2.12.2
authorJunio C Hamano <gitster@pobox.com>
Fri, 24 Mar 2017 19:59:15 +0000 (12:59 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 24 Mar 2017 19:59:15 +0000 (12:59 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/2.12.2.txt
Documentation/git.txt
GIT-VERSION-GEN

index 9efc3483535bc318d4f2863ae4e9f33f0735a337..441939709c777aa1f1a93e85cfd7233029f6709b 100644 (file)
@@ -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.<name>.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 <patterns>... <rev>
+   [[--] <pathspec>...]" 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.
index 25560f69ff9b7208db31261d2283d91df91601bc..88c39d3ed5d5239ffd485711d01d51e546dedde6 100644 (file)
@@ -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].
 
index d18eb6d9b17d25465a289a6fbbb0c19ad641823b..e83f591a7bc1f525627557c59648da579594c1de 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v2.12.1
+DEF_VER=v2.12.2
 
 LF='
 '