@@ -28,6 +28,9 @@ Fixes since v1.7.1
2828 * "git checkout" and "git rebase" overwrote paths that are marked "assume
2929 unchanged".
3030
31+ * "git commit --amend" on a commit with an invalid author-name line that
32+ lacks the display name didn't work.
33+
3134 * "git describe" did not tie-break tags that point at the same commit
3235 correctly; newer ones are preferred by paying attention to the
3336 tagger date now.
@@ -49,14 +52,25 @@ Fixes since v1.7.1
4952
5053 * "git log --abbrev=$num --format='%h' ignored --abbrev=$num.
5154
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+
5260 * "git pull" accepted "--dry-run", gave it to underlying "git fetch" but
5361 ignored the option itself, resulting in a bogus attempt to merge
5462 unrelated commit.
5563
64+ * "git reset --hard" started from a wrong directory and a working tree in
65+ a nonstandard location is in use got confused.
66+
5667 * "git send-email" lacked a way to specify the domainname used in the
5768 EHLO/HELO exchange, causing rejected connection from picky servers.
5869 It learned --smtp-domain option to solve this issue.
5970
71+ * "git show -C -C" and other corner cases lost diff metainfo output
72+ in 1.7.0.
73+
6074 * "git stash" incorrectly lost paths in the working tree that were
6175 previously removed from the index.
6276
@@ -65,3 +79,10 @@ Fixes since v1.7.1
6579 * "git status" showed excess "hints" even when advice.statusHints is set to false.
6680
6781And 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