Skip to content

Commit e70d163

Browse files
committed
Further merging in preparation for 1.7.12.1
Describe the following in the draft release notes: . jc/apply-binary-p0 . jc/dotdot-is-parent-directory . jc/maint-doc-checkout-b-always-takes-branch-name . jk/maint-http-half-auth-push . kk/maint-for-each-ref-multi-sort Yet to be merged before 1.7.12.1 are: . jk/config-warn-on-inaccessible-paths . jk/maint-quiet-is-synonym-to-s-in-log . mz/cherry-pick-cmdline-order Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3503e9a commit e70d163

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Documentation/RelNotes/1.7.12.1.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ Fixes since v1.7.12
1414
subcommands can be abbreviated to the unique prefix, but it was not
1515
easy to find it described for new readers of the documentation set.
1616

17+
* The synopsis said "checkout [-B branch]" to make it clear the
18+
branch name is a parameter to the option, but the heading for the
19+
option description was "-B::", not "-B branch::", making the
20+
documentation misleading.
21+
1722
* The "--topo-order", "--date-order" (and the lack of either means
1823
the default order) options to "rev-list" and "log" family of
1924
commands were poorly described in the documentation.
@@ -36,6 +41,14 @@ Fixes since v1.7.12
3641

3742
* Fallback 'getpass' implementation made unportable use of stdio API.
3843

44+
* "git apply -p0" did not parse pathnames on "diff --git" line
45+
correctly. This caused patches that had pathnames in no other
46+
places to be mistakenly rejected (most notably, binary patch that
47+
does not rename nor change mode). Textual patches, renames or mode
48+
changes have preimage and postimage pathnames in different places
49+
in a form that can be parsed unambiguously and did not suffer from
50+
this problem.
51+
3952
* "git commit --amend" let the user edit the log message and then
4053
died when the human-readable committer name was given
4154
insufficiently by getpwent(3).
@@ -44,9 +57,22 @@ Fixes since v1.7.12
4457
did not advertise that they are available. fetch-pack has been
4558
fixed not to do so.
4659

60+
* "git for-each-ref" did not currectly support more than one --sort
61+
option.
62+
63+
* "git log .." errored out saying it is both rev range and a path
64+
when there is no disambiguating "--" is on the command line.
65+
Update the command line parser to interpret ".." as a path in such
66+
a case.
67+
4768
* "git prune" without "-v" used to warn about leftover temporary
4869
files (which is an indication of an earlier aborted operation).
4970

71+
* Pushing to smart HTTP server with recent Git fails without having
72+
the username in the URL to force authentication, if the server is
73+
configured to allow GET anonymously, while requiring authentication
74+
for POST.
75+
5076
* The reflog entries left by "git rebase" and "git rebase -i" were
5177
inconsistent (the interactive one gave an abbreviated object name).
5278

0 commit comments

Comments
 (0)