From 6cf53d7df689257816370294d46f819e6e8497e8 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Thu, 20 Oct 2011 17:58:33 -0400 Subject: [PATCH 1/2] tests: add missing executable bits Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- t/t4051-diff-function-context.sh | 0 t/t9162-git-svn-dcommit-interactive.sh | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 t/t4051-diff-function-context.sh mode change 100644 => 100755 t/t9162-git-svn-dcommit-interactive.sh diff --git a/t/t4051-diff-function-context.sh b/t/t4051-diff-function-context.sh old mode 100644 new mode 100755 diff --git a/t/t9162-git-svn-dcommit-interactive.sh b/t/t9162-git-svn-dcommit-interactive.sh old mode 100644 new mode 100755 From 8742218f21e1e87cf9fceb11b9c14927af5ff33f Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 21 Oct 2011 11:01:07 -0700 Subject: [PATCH 2/2] Almost ready for 1.7.7.1 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/1.7.7.1.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Documentation/RelNotes/1.7.7.1.txt b/Documentation/RelNotes/1.7.7.1.txt index 02d7c02a00..fecfac8a16 100644 --- a/Documentation/RelNotes/1.7.7.1.txt +++ b/Documentation/RelNotes/1.7.7.1.txt @@ -4,6 +4,26 @@ Git v1.7.7.1 Release Notes Fixes since v1.7.7 ------------------ + * On some BSD systems, adding +s bit on directories is detrimental + (it is not necessary on BSD to begin with). The installation + procedure has been updated to take this into account. + + * After incorrectly written third-party tools store a tag object in + HEAD, git diagnosed it as a repository corruption and refused to + proceed in order to avoid spreading the damage. We now gracefully + recover from such a situation by pretending as if the commit that + is pointed at by the tag were in HEAD. + + * "git apply --whitespace=error" did not bother to report the exact + line number in the patch that introduced new blank lines at the end + of the file. + + * "git apply --index" did not check corrupted patch. + + * "git checkout $tree $directory/" resurrected paths locally removed or + modified only in the working tree in $directory/ that did not appear + in $directory of the given $tree. They should have been kept intact. + * "git diff $tree $path" used to apply the pathspec at the output stage, reading the whole tree, wasting resources.