diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-03-24 13:31:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-24 13:31:01 -0700 |
commit | 034667a458057ef1e571973a38ebbdf0045a63e9 (patch) | |
tree | db6473879e0ee571eda48e64ba378cf0a63bb793 /Documentation/RelNotes | |
parent | Seventh batch for 2.13 (diff) | |
parent | Git 2.12.2 (diff) | |
download | tgif-034667a458057ef1e571973a38ebbdf0045a63e9.tar.xz |
Sync with 2.12.2
Diffstat (limited to 'Documentation/RelNotes')
-rw-r--r-- | Documentation/RelNotes/2.12.2.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.12.2.txt b/Documentation/RelNotes/2.12.2.txt index 9efc348353..441939709c 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.<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. |