@@ -15,14 +15,31 @@ Fixes since v1.7.1
15
15
macro that set/unset one attribute, immediately followed by an
16
16
overriding setting; this makes attribute macros much easier to use.
17
17
18
+ * We didn't recognize timezone "Z" as a synonym for "UTC" (75b37e70).
19
+
18
20
* "git am -3" did not show diagnosis when the patch in the message was corrupt.
19
21
22
+ * After "git apply --whitespace=fix" removed trailing blank lines in an
23
+ patch in a patch series, it failed to apply later patches that depend
24
+ on the presense of such blank lines.
25
+
20
26
* "git bundle --stdin" segfaulted.
21
27
28
+ * "git checkout" and "git rebase" overwrote paths that are marked "assume
29
+ unchanged".
30
+
22
31
* "git describe" did not tie-break tags that point at the same commit
23
32
correctly; newer ones are preferred by paying attention to the
24
33
tagger date now.
25
34
35
+ * "git diff" used to tell underlying xdiff machinery to work very hard to
36
+ minimize the output, but this often was spending too many extra cycles
37
+ for very little gain.
38
+
39
+ * "git diff --color" did not paint extended diff headers per line
40
+ (i.e. the coloring escape sequence didn't end at the end of line),
41
+ which confused "less -R".
42
+
26
43
* "git fetch" over HTTP verifies the downloaded packfiles more robustly.
27
44
28
45
* The memory usage by "git index-pack" (run during "git fetch" and "git
@@ -32,6 +49,10 @@ Fixes since v1.7.1
32
49
33
50
* "git log --abbrev=$num --format='%h' ignored --abbrev=$num.
34
51
52
+ * "git pull" accepted "--dry-run", gave it to underlying "git fetch" but
53
+ ignored the option itself, resulting in a bogus attempt to merge
54
+ unrelated commit.
55
+
35
56
* "git send-email" lacked a way to specify the domainname used in the
36
57
EHLO/HELO exchange, causing rejected connection from picky servers.
37
58
It learned --smtp-domain option to solve this issue.
0 commit comments