Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1c2ab43

Browse files
committed
Update draft release notes to 1.7.4
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2de3c14 commit 1c2ab43

File tree

1 file changed

+37
-10
lines changed

1 file changed

+37
-10
lines changed

Documentation/RelNotes/1.7.4.txt

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,21 @@ Updates since v1.7.3
1515
/etc/gitattributes; core.attributesfile configuration variable can
1616
be used to customize the path to this file.
1717

18+
* The thread structure generated by "git send-email" has changed
19+
slightly. Setting the cover letter of the latest series as a reply
20+
to the cover letter of the previous series with --in-reply-to used
21+
to make the new cover letter and all the patches replies to the
22+
cover letter of the previous series; this has been changed to make
23+
the patches in the new series replies to the new cover letter.
24+
1825
* Bash completion script in contrib/ has been adjusted to be also
1926
usable by zsh.
2027

28+
* "git blame" learned --show-email option to display the e-mail
29+
addresses instead of the names of authors.
30+
31+
* "git daemon" can be built in MinGW environment.
32+
2133
* "git daemon" can take more than one --listen option to listen to
2234
multiple addresses.
2335

@@ -41,6 +53,13 @@ Updates since v1.7.3
4153
* "git merge --log" used to limit the resulting merge log to 20
4254
entries; this is now customizable by giving e.g. "--log=47".
4355

56+
* "git merge" may work better when all files were moved out of a
57+
directory in one branch while a new file is created in place of that
58+
directory in the other branch.
59+
60+
* "git rebase --autosquash" can use SHA-1 object names to name which
61+
commit to fix up (e.g. "fixup! e83c5163").
62+
4463
* The default "recursive" merge strategy learned --rename-threshold
4564
option to influence the rename detection, similar to the -M option
4665
of "git diff". E.g. "git merge -Xrename-threshold=50% ..." to use
@@ -73,33 +92,41 @@ Fixes since v1.7.3
7392
All of the fixes in v1.7.3.X maintenance series are included in this
7493
release, unless otherwise noted.
7594

76-
* "diff" and friends incorrectly applied textconv filters to symlinks
77-
(d391c0ff).
95+
* Smart HTTP transport used to incorrectly retry redirected POST
96+
request with GET request (311e2ea006).
97+
98+
* "git apply" did not correctly handle patches that only change modes
99+
if told to apply while stripping leading paths with -p option (aae1f6ac).
78100

79-
* "git apply" segfaulted when a bogus input is fed to it (24305cd70).
101+
* "git apply" can deal with patches with timezone formatted with a
102+
colon between the hours and minutes part (e.g. "-08:00" instead of
103+
"-0800").
80104

81-
* Running "git cherry-pick --ff" on a root commit segfaulted (6355e50).
105+
* "git checkout" removed an untracked file "foo" from the working
106+
tree when switching to a branch that contains a tracked path
107+
"foo/bar". Prevent this, just like the case where the conflicting
108+
path were "foo" (c752e7f..7980872d).
109+
110+
* "git diff --check" reported an incorrect line number for added
111+
blank lines at the end of file (8837d335).
82112

83113
* "git log --author=me --author=her" did not find commits written by
84114
me or by her; instead it looked for commits written by me and by
85115
her, which is impossible.
86116

87-
* "git merge-file" can be called from within a subdirectory now
88-
(55846b9a).
117+
* "git merge" into an unborn branch removed an untracked file "foo"
118+
from the working tree when merged branch had "foo" (2caf20c..172b642).
89119

90120
* "git push --progress" shows progress indicators now.
91121

92122
* "git repack" places its temporary packs under $GIT_OBJECT_DIRECTORY/pack
93123
instead of $GIT_OBJECT_DIRECTORY/ to avoid cross directory renames.
94124

95-
* "git rev-list --format="...%x00..." incorrectly chopped its output
96-
at NUL (9130ac9fe).
97-
98125
* "git submodule update --recursive --other-flags" passes flags down
99126
to its subinvocations.
100127

101128
---
102129
exec >/var/tmp/1
103-
O=v1.7.3.2-245-g03276d9
130+
O=v1.7.3.2-450-g5b9c331
104131
echo O=$(git describe master)
105132
git shortlog --no-merges ^maint ^$O master

0 commit comments

Comments
 (0)