diff options
author | Matthias Lederhofer <matled@gmx.net> | 2007-01-19 11:49:35 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 23:29:49 -0800 |
commit | 9b088c4e394df84232cfd37aea78349a495b09c1 (patch) | |
tree | bf02a847e86a19c515373dfe02e94349cd2a8e90 /t/t1410-reflog.sh | |
parent | a6c730644b7e1d35bd0d26962dbc978aa47d1863 (diff) | |
download | git-9b088c4e394df84232cfd37aea78349a495b09c1.tar.gz git-9b088c4e394df84232cfd37aea78349a495b09c1.tar.xz |
prune: --grace=time
This option gives grace period to objects that are unreachable
from the refs from getting pruned.
The default value is 24 hours and may be changed using
gc.prunegrace.
Signed-off-by: Matthias Lederhofer <matled@gmx.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t1410-reflog.sh')
-rwxr-xr-x | t/t1410-reflog.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t1410-reflog.sh b/t/t1410-reflog.sh index 8e8d526ef..0c435f957 100755 --- a/t/t1410-reflog.sh +++ b/t/t1410-reflog.sh @@ -96,7 +96,7 @@ test_expect_success setup ' check_have A B C D E F G H I J K L && - git prune && + git prune --grace=off && check_have A B C D E F G H I J K L && @@ -115,7 +115,7 @@ test_expect_success rewind ' check_have A B C D E F G H I J K L && - git prune && + git prune --grace=off && check_have A B C D E F G H I J K L && @@ -160,7 +160,7 @@ test_expect_success 'reflog expire' ' test_expect_success 'prune and fsck' ' - git prune && + git prune --grace=off && check_fsck && check_have A B C D E H L && |