@@ -17,6 +17,13 @@ Fixes since v1.7.1
17
17
18
18
* We didn't recognize timezone "Z" as a synonym for "UTC" (75b37e70).
19
19
20
+ * In 1.7.0, read-tree and user commands that use the mechanism such as
21
+ checkout and merge were fixed to handle switching between branches one
22
+ of which has a file while the other has a directory at the same path
23
+ correctly even when there are some "confusing" pathnames in them. But
24
+ the algorithm used for this fix was suboptimal and had a terrible
25
+ performance degradation especially in larger trees.
26
+
20
27
* "git am -3" did not show diagnosis when the patch in the message was corrupt.
21
28
22
29
* After "git apply --whitespace=fix" removed trailing blank lines in an
@@ -57,17 +64,25 @@ Fixes since v1.7.1
57
64
* "git merge --log" used to replace the custom message given by "-m" with
58
65
the shortlog, instead of appending to it.
59
66
67
+ * "git notes copy" without any other argument segfaulted.
68
+
60
69
* "git pull" accepted "--dry-run", gave it to underlying "git fetch" but
61
70
ignored the option itself, resulting in a bogus attempt to merge
62
71
unrelated commit.
63
72
73
+ * "git rebase" did not faithfully reproduce a malformed author ident, that
74
+ is often seen in a repository converted from foreign SCMs.
75
+
64
76
* "git reset --hard" started from a wrong directory and a working tree in
65
77
a nonstandard location is in use got confused.
66
78
67
79
* "git send-email" lacked a way to specify the domainname used in the
68
80
EHLO/HELO exchange, causing rejected connection from picky servers.
69
81
It learned --smtp-domain option to solve this issue.
70
82
83
+ * "git send-email" did not declare a content-transfer-encoding and
84
+ content-type even when its payload needs to be sent in 8-bit.
85
+
71
86
* "git show -C -C" and other corner cases lost diff metainfo output
72
87
in 1.7.0.
73
88
@@ -83,6 +98,6 @@ And other minor fixes and documentation updates.
83
98
84
99
--
85
100
exec >/var/tmp/1
86
- O=v1.7.1-195-gb2ebbd8
101
+ O=v1.7.1-211-g54fcb21
87
102
echo O=$(git describe HEAD)
88
103
git shortlog --no-merges HEAD ^$O
0 commit comments