From: Björn Steinbrink Date: Thu, 23 Jul 2009 15:33:45 +0000 (+0200) Subject: Add a test showing that 'git repack' throws away grafted-away parents X-Git-Tag: v1.6.4-rc3~7^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1ec648278e3a3e5a04dfaac916f68e2f675ff9ea;p=git.git Add a test showing that 'git repack' throws away grafted-away parents Signed-off-by: Björn Steinbrink Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/t/t7700-repack.sh b/t/t7700-repack.sh index 87c9b0e12..a4dddb728 100755 --- a/t/t7700-repack.sh +++ b/t/t7700-repack.sh @@ -149,5 +149,17 @@ test_expect_success 'local packed unreachable obs that exist in alternate ODB ar test_must_fail git show $csha1 ' +test_expect_failure 'objects made unreachable by grafts only are kept' ' + test_tick && + git commit --allow-empty -m "commit 4" && + H0=$(git rev-parse HEAD) && + H1=$(git rev-parse HEAD^) && + H2=$(git rev-parse HEAD^^) && + echo "$H0 $H2" > .git/info/grafts && + git reflog expire --expire=now --expire-unreachable=now --all && + git repack -a -d && + git cat-file -t $H1 + ' + test_done