diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-11 11:27:35 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-11 11:27:35 -0700 |
commit | cbd6b089e821a4ff35970531b26e64a2e621ff04 (patch) | |
tree | c1b725b7ff0b3d58763e3f03a28458ab5fd61d8a | |
parent | 1c88a6d17492b197b9b3298cbc34efa804928302 (diff) | |
download | git-cbd6b089e821a4ff35970531b26e64a2e621ff04.tar.gz git-cbd6b089e821a4ff35970531b26e64a2e621ff04.tar.xz |
Further merging down for 1.7.12.1
We will wait for a handful of other fixes that have graduated to the
'master' for 1.8.0 to be tested in the wild and then tag 1.7.12.1:
. mz/cherry-pick-cmdline-order
. jk/maint-quiet-is-synonym-to-s-in-log
. jk/maint-http-half-auth-push
. jc/apply-binary-p0
. jk/config-warn-on-inaccessible-paths
. kk/maint-for-each-ref-multi-sort
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/RelNotes/1.7.12.1.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/RelNotes/1.7.12.1.txt b/Documentation/RelNotes/1.7.12.1.txt index c6ea0acb9..da51dd539 100644 --- a/Documentation/RelNotes/1.7.12.1.txt +++ b/Documentation/RelNotes/1.7.12.1.txt @@ -25,12 +25,25 @@ Fixes since v1.7.12 * A utility shell function test_seq has been added as a replacement for the 'seq' utility found on some platforms. + * Compatibility wrapper to learn the maximum number of file + descriptors we can open around sysconf(_SC_OPEN_MAX) and + getrlimit(RLIMIT_NO_FILE) has been introduced for portability. + + * We used curl_easy_strerror() without checking version of cURL, + breaking the build for versions before curl 7.12.0. + + * Code to work around MacOS X UTF-8 gotcha has been cleaned up. + * Fallback 'getpass' implementation made unportable use of stdio API. * "git commit --amend" let the user edit the log message and then died when the human-readable committer name was given insufficiently by getpwent(3). + * Some capabilities were asked by fetch-pack even when upload-pack + did not advertise that they are available. fetch-pack has been + fixed not to do so. + * "git prune" without "-v" used to warn about leftover temporary files (which is an indication of an earlier aborted operation). |