Skip to content

Commit 8f9aeb0

Browse files
committed
Git 2.12.2
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 75d4476 commit 8f9aeb0

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

Documentation/RelNotes/2.12.2.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,26 @@ Fixes since v2.12.1
5858
ignore anything after '>' when picking addresses, to allow non-address
5959
cruft like " # stable 4.4" after the address.
6060

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+
6183
Also contains various documentation updates and code clean-ups.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ unreleased) version of Git, that is available from the 'master'
4444
branch of the `git.git` repository.
4545
Documentation for older releases are available here:
4646

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]
4848

4949
* release notes for
50+
link:RelNotes/2.12.2.txt[2.12.2].
5051
link:RelNotes/2.12.1.txt[2.12.1].
5152
link:RelNotes/2.12.0.txt[2.12].
5253

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.12.1
4+
DEF_VER=v2.12.2
55

66
LF='
77
'

0 commit comments

Comments
 (0)