diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-03 15:43:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-03 15:43:49 -0700 |
commit | 56df44a98759157a6d729901f0e27b749e23c0d6 (patch) | |
tree | 07c0c8f81ef990acd0c797575de3aa708c13fc34 /Documentation | |
parent | 0e7c41c0cd14b0d748ce624e49800b63f9b27991 (diff) | |
parent | 81a199bb1cd483321962a7bfe5db33980bbf0f01 (diff) | |
download | git-56df44a98759157a6d729901f0e27b749e23c0d6.tar.gz |
Merge branch 'maint'
* maint:
Update draft release notes to 1.8.3.3
git-config: update doc for --get with multiple values
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/RelNotes/1.8.3.3.txt | 15 | ||||
-rw-r--r-- | Documentation/git-config.txt | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/Documentation/RelNotes/1.8.3.3.txt b/Documentation/RelNotes/1.8.3.3.txt index 58a570ef3d..04289e793c 100644 --- a/Documentation/RelNotes/1.8.3.3.txt +++ b/Documentation/RelNotes/1.8.3.3.txt @@ -4,8 +4,23 @@ Git v1.8.3.3 Release Notes Fixes since v1.8.3.2 -------------------- + * "gitweb" forgot to clear a global variable $search_regexp upon each + request, mistakenly carrying over the previous search to a new one + when used as a persistent CGI. + + * The wildmatch engine did not honor WM_CASEFOLD option correctly. + + * "git log -c --follow $path" segfaulted upon hitting the commit that + renamed the $path being followed. + + * When a reflog notation is used for implicit "current branch", + e.g. "git log @{u}", we did not say which branch and worse said + "branch ''" in the error messages. + * Mac OS X does not like to write(2) more than INT_MAX number of bytes; work it around by chopping write(2) into smaller pieces. * Newer MacOS X encourages the programs to compile and link with their CommonCrypto, not with OpenSSL. + +Also contains various minor documentation updates. diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt index 19a7be0856..fbad05e46f 100644 --- a/Documentation/git-config.txt +++ b/Documentation/git-config.txt @@ -82,7 +82,7 @@ OPTIONS --get:: Get the value for a given key (optionally filtered by a regex matching the value). Returns error code 1 if the key was not - found and error code 2 if multiple key values were found. + found and the last value if multiple key values were found. --get-all:: Like get, but does not fail if the number of values for the key |