Git 2.12.2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Mar 24, 2017 at 12:59 UTC
8f9aeb0d36c6cbfb849946bb272fa0d3c4611547
3 files changed
+25
-2
Documentation/RelNotes/2.12.2.txt
+22
@@ -58,4 +58,26 @@ Fixes since v2.12.1
58
ignore anything after '>' when picking addresses, to allow non-address
59
cruft like " # stable 4.4" after the address.
60
61
+ * "git push" had a handful of codepaths that could lead to a deadlock
62
+ when unexpected error happened, which has been fixed.
63
+
64
+ * Code to read submodule.<name>.ignore config did not state the
65
+ variable name correctly when giving an error message diagnosing
66
+ misconfiguration.
67
+
68
+ * "git ls-remote" and "git archive --remote" are designed to work
69
+ without being in a directory under Git's control. However, recent
70
+ updates revealed that we randomly look into a directory called
71
+ .git/ without actually doing necessary set-up when working in a
72
+ repository. Stop doing so.
73
+
74
+ * The code to parse the command line "git grep <patterns>... <rev>
75
+ [[--] <pathspec>...]" has been cleaned up, and a handful of bugs
76
+ have been fixed (e.g. we used to check "--" if it is a rev).
77
+
78
+ * The code to parse "git -c VAR=VAL cmd" and set configuration
79
+ variable for the duration of cmd had two small bugs, which have
80
+ been fixed.
81
+ This supersedes jc/config-case-cmdline topic that has been discarded.
82
+
83
Also contains various documentation updates and code clean-ups.
Documentation/git.txt
+2
-1
@@ -44,9 +44,10 @@ unreleased) version of Git, that is available from the 'master'
44
branch of the `git.git` repository.
45
Documentation for older releases are available here:
46
47
-* link:v2.12.1/git.html[documentation for release 2.12.1]
47
+* link:v2.12.2/git.html[documentation for release 2.12.2]
48
49
* release notes for
50
+ link:RelNotes/2.12.2.txt[2.12.2].
51
link:RelNotes/2.12.1.txt[2.12.1].
52
link:RelNotes/2.12.0.txt[2.12].
53
GIT-VERSION-GEN
+1
-1
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
3
GVF=GIT-VERSION-FILE
4
-DEF_VER=v2.12.1
4
+DEF_VER=v2.12.2
5
6
LF='
7
'