summaryrefslogtreecommitdiffstats
path: root/t/t5510-fetch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-23 01:51:18 +0100
committerJunio C Hamano <gitster@pobox.com>2007-11-23 01:51:18 +0100
commitfa30383642c5838bd6d4c903abafcea17568abb1 (patch)
tree9dad233b115c5bcd4274c4f6e095ae4aaff7cb45 /t/t5510-fetch.sh
parentrebase -i: move help to end of todo file (diff)
parentMake test scripts executable. (diff)
downloadgit-fa30383642c5838bd6d4c903abafcea17568abb1.tar.xz
git-fa30383642c5838bd6d4c903abafcea17568abb1.zip
Merge branch 'maint'
* maint: Make test scripts executable. bundle create: keep symbolic refs' names instead of resolving them
Diffstat (limited to 't/t5510-fetch.sh')
-rwxr-xr-xt/t5510-fetch.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
index aad863db7a..35889c0a12 100755
--- a/t/t5510-fetch.sh
+++ b/t/t5510-fetch.sh
@@ -215,4 +215,17 @@ test_expect_success 'quoting of a strangely named repo' '
grep "fatal: '\''a\\\\!'\''b'\''" result
'
+test_expect_success 'bundle should record HEAD correctly' '
+
+ cd "$D" &&
+ git bundle create bundle5 HEAD master &&
+ git bundle list-heads bundle5 >actual &&
+ for h in HEAD refs/heads/master
+ do
+ echo "$(git rev-parse --verify $h) $h"
+ done >expect &&
+ diff -u expect actual
+
+'
+
test_done