Skip to content

Commit 01b97a4

Browse files
committed
Git 1.7.4-rc0
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2cd900f commit 01b97a4

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

Documentation/RelNotes/1.7.4.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ Updates since v1.7.3
2626
cover letter of the previous series; this has been changed to make
2727
the patches in the new series replies to the new cover letter.
2828

29-
* Bash completion script in contrib/ has been adjusted to be also
30-
usable by zsh.
29+
* Bash completion script in contrib/ has been adjusted to be usable with
30+
Bash 4 (options with '=value' didn't complete) It has been also made
31+
usable with zsh.
3132

3233
* Different pagers can be chosen depending on which subcommand is
3334
being run under the pager, using "pager.<subcommand>" variable.
@@ -76,8 +77,8 @@ Updates since v1.7.3
7677
use the new --empty option to be more explicit instead.
7778

7879
* "git repack -f" does not spend cycles to recompress objects in the
79-
non-delta representation anymore (use -F if you really mean it when
80-
e.g. you changed the compression level).
80+
non-delta representation anymore (use -F if you really mean it
81+
e.g. after you changed the core.compression variable setting).
8182

8283
* "git merge --log" used to limit the resulting merge log to 20
8384
entries; this is now customizable by giving e.g. "--log=47".
@@ -91,8 +92,9 @@ Updates since v1.7.3
9192

9293
* The default "recursive" merge strategy learned --rename-threshold
9394
option to influence the rename detection, similar to the -M option
94-
of "git diff". E.g. "git merge -Xrename-threshold=50% ..." to use
95-
this.
95+
of "git diff". From "git merge" frontend, "-X<strategy option>"
96+
interface, e.g. "git merge -Xrename-threshold=50% ...", can be used
97+
to trigger this.
9698

9799
* The "recursive" strategy also learned to ignore various whitespace
98100
changes; the most notable is -Xignore-space-at-eol.
@@ -130,9 +132,6 @@ release, unless otherwise noted.
130132
me or by her; instead it looked for commits written by me and by
131133
her, which is impossible.
132134

133-
* "git merge" into an unborn branch removed an untracked file "foo"
134-
from the working tree when merged branch had "foo" (2caf20c..172b642).
135-
136135
* "git push --progress" shows progress indicators now.
137136

138137
* "git repack" places its temporary packs under $GIT_OBJECT_DIRECTORY/pack
@@ -143,6 +142,6 @@ release, unless otherwise noted.
143142

144143
---
145144
exec >/var/tmp/1
146-
O=v1.7.3.4-567-g38a5932
145+
O=v1.7.3.4-687-g2cd900f
147146
echo O=$(git describe master)
148147
git shortlog --no-merges ^maint ^$O master

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.3.GIT
4+
DEF_VER=v1.7.4-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)