diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-01-25 17:13:02 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-25 17:13:02 -0800 |
commit | f18e6bef23809d2823c1a687f375b22c6af0e735 (patch) | |
tree | 3b9c79bbd3307ca49a36b142435937db12dbb2b8 /t/t5701-clone-local.sh | |
parent | 45099df6d7d83b30300f8efa3f6b831d6132c687 (diff) | |
parent | b2a6d1c6868b6d5e7d2b4fa9129341220a1e848a (diff) | |
download | git-f18e6bef23809d2823c1a687f375b22c6af0e735.tar.gz git-f18e6bef23809d2823c1a687f375b22c6af0e735.tar.xz |
Merge branch 'js/maint-all-implies-HEAD'
* js/maint-all-implies-HEAD:
bundle: allow the same ref to be given more than once
revision walker: include a detached HEAD in --all
Diffstat (limited to 't/t5701-clone-local.sh')
-rwxr-xr-x | t/t5701-clone-local.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5701-clone-local.sh b/t/t5701-clone-local.sh index fbd9bfa57..3559d1796 100755 --- a/t/t5701-clone-local.sh +++ b/t/t5701-clone-local.sh @@ -11,8 +11,8 @@ test_expect_success 'preparing origin repository' ' git clone --bare . x && test "$(GIT_CONFIG=a.git/config git config --bool core.bare)" = true && test "$(GIT_CONFIG=x/config git config --bool core.bare)" = true - git bundle create b1.bundle --all HEAD && - git bundle create b2.bundle --all && + git bundle create b1.bundle --all && + git bundle create b2.bundle master && mkdir dir && cp b1.bundle dir/b3 cp b1.bundle b4 |