diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-15 12:47:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-15 12:47:37 -0700 |
commit | 7e100effc6c3a8acbb4bf305638c7b324a63236d (patch) | |
tree | 5d2ee2e36c22006f86bdc6a8e65fa45933f5d3b0 /Documentation | |
parent | 2e1e96126f93653badaa0afd17204e417dfc8e7d (diff) | |
download | git-7e100effc6c3a8acbb4bf305638c7b324a63236d.tar.gz |
Git 1.7.3 rc2v1.7.3-rc2
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/RelNotes/1.7.3.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Documentation/RelNotes/1.7.3.txt b/Documentation/RelNotes/1.7.3.txt index f1243ff112..b55731f23f 100644 --- a/Documentation/RelNotes/1.7.3.txt +++ b/Documentation/RelNotes/1.7.3.txt @@ -4,7 +4,8 @@ Git v1.7.3 Release Notes (draft) Updates since v1.7.2 -------------------- - * git-gui got various updates and a new maintainer, Pat Thoyts. + * git-gui, now at version 0.13.0, got various updates and a new + maintainer, Pat Thoyts. * Gitweb allows its configuration to change per each request; it used to read the configuration once upon startup. @@ -63,16 +64,21 @@ release, unless otherwise noted. * "git fetch $url" (i.e. without refspecs) was broken for quite some time, if the current branch happen to be tracking some remote. + * "git ls-tree dir dirgarbage", when "dir" was a directory, + incorrectly recursed into "dir". + * "git note remove" created unnecessary extra commit when named object did not have any note to begin with. + * "git rebase" did not work well if you had diff.noprefix configured. + * "git -c foo=bar subcmd" did not work well for subcmd that is not implemented as a built-in command. --- exec >/var/tmp/1 echo O=$(git describe master) -O=v1.7.3-rc0 +O=v1.7.3-rc2 git shortlog --no-merges $O..master ^maint exit 0 |