@@ -28,6 +28,9 @@ Fixes since v1.7.1
28
28
* "git checkout" and "git rebase" overwrote paths that are marked "assume
29
29
unchanged".
30
30
31
+ * "git commit --amend" on a commit with an invalid author-name line that
32
+ lacks the display name didn't work.
33
+
31
34
* "git describe" did not tie-break tags that point at the same commit
32
35
correctly; newer ones are preferred by paying attention to the
33
36
tagger date now.
@@ -49,14 +52,25 @@ Fixes since v1.7.1
49
52
50
53
* "git log --abbrev=$num --format='%h' ignored --abbrev=$num.
51
54
55
+ * "git ls-files ../out/side/cwd" refused to work.
56
+
57
+ * "git merge --log" used to replace the custom message given by "-m" with
58
+ the shortlog, instead of appending to it.
59
+
52
60
* "git pull" accepted "--dry-run", gave it to underlying "git fetch" but
53
61
ignored the option itself, resulting in a bogus attempt to merge
54
62
unrelated commit.
55
63
64
+ * "git reset --hard" started from a wrong directory and a working tree in
65
+ a nonstandard location is in use got confused.
66
+
56
67
* "git send-email" lacked a way to specify the domainname used in the
57
68
EHLO/HELO exchange, causing rejected connection from picky servers.
58
69
It learned --smtp-domain option to solve this issue.
59
70
71
+ * "git show -C -C" and other corner cases lost diff metainfo output
72
+ in 1.7.0.
73
+
60
74
* "git stash" incorrectly lost paths in the working tree that were
61
75
previously removed from the index.
62
76
@@ -65,3 +79,10 @@ Fixes since v1.7.1
65
79
* "git status" showed excess "hints" even when advice.statusHints is set to false.
66
80
67
81
And other minor fixes and documentation updates.
82
+
83
+
84
+ --
85
+ exec >/var/tmp/1
86
+ O=v1.7.1-195-gb2ebbd8
87
+ echo O=$(git describe HEAD)
88
+ git shortlog --no-merges HEAD ^$O
0 commit comments