diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-01-13 11:42:01 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-01-13 12:14:18 -0800 |
commit | adf872e7837cc92e390f00ee32f32c5639d3a444 (patch) | |
tree | 1f62b778529b54c67e23111dee7598bc1b115a3c | |
parent | 477039c53c456273d59a1d5427fa6eb2deaaa239 (diff) | |
download | git-adf872e7837cc92e390f00ee32f32c5639d3a444.tar.gz |
Git 1.7.4-rc2v1.7.4-rc2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/RelNotes/1.7.4.txt | 12 | ||||
-rwxr-xr-x | GIT-VERSION-GEN | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/Documentation/RelNotes/1.7.4.txt b/Documentation/RelNotes/1.7.4.txt index 48dd9640d3..84d0e1dc13 100644 --- a/Documentation/RelNotes/1.7.4.txt +++ b/Documentation/RelNotes/1.7.4.txt @@ -66,7 +66,7 @@ Updates since v1.7.3 objects unnecessarily. * "git diff" and "git grep" learned what functions and subroutines - in Fortran look like. + in Fortran and Perl look like. * "git fetch" learned the "--recurse-submodules" option. @@ -91,6 +91,14 @@ Updates since v1.7.3 directory in one branch while a new file is created in place of that directory in the other branch. + * "git merge" learned the "--abort" option, synonymous to + "git reset --merge" when a merge is in progress. + + * "git notes" learned the "merge" subcommand to merge notes refs. + In addition to the default manual conflict resolution, there are + also several notes merge strategies for automatically resolving + notes merge conflicts. + * "git rebase --autosquash" can use SHA-1 object names to name the commit which is to be fixed up (e.g. "fixup! e83c5163"). @@ -146,6 +154,6 @@ release, unless otherwise noted. --- exec >/var/tmp/1 -O=v1.7.4-rc1 +O=v1.7.4-rc2 echo O=$(git describe master) git shortlog --no-merges ^maint ^$O master diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index c29b944478..ccfc298b18 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v1.7.4-rc1 +DEF_VER=v1.7.4-rc2 LF=' ' |