diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-08 14:40:33 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-08 14:46:00 -0800 |
commit | 0f018baba654347b5ce746253b99d59707f80184 (patch) | |
tree | 16b1f8e5488984a9cfdb8a83a261a708ec884f58 /t/t3210-pack-refs.sh | |
parent | d84029b6738197fa409861597934b29bbebad262 (diff) | |
download | git-0f018baba654347b5ce746253b99d59707f80184.tar.gz git-0f018baba654347b5ce746253b99d59707f80184.tar.xz |
--prune is now default for 'pack-refs'
There is no reason not to, really.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t3210-pack-refs.sh')
-rwxr-xr-x | t/t3210-pack-refs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3210-pack-refs.sh b/t/t3210-pack-refs.sh index b1e9f2eed..16bdae4f2 100755 --- a/t/t3210-pack-refs.sh +++ b/t/t3210-pack-refs.sh @@ -34,7 +34,7 @@ test_expect_success \ 'see if a branch still exists when packed' \ 'git-branch b && git-pack-refs --all && - rm .git/refs/heads/b && + rm -f .git/refs/heads/b && echo "$SHA1 refs/heads/b" >expect && git-show-ref b >result && diff expect result' |