ls-remote: pass heads/tags prefixes to transport
[gitweb.git] / t / t5512-ls-remote.sh
index 94170b663fd8a7f40fb745b7d80f1947b258969d..0e8d0fb595103a7e6eca22cbcfbdbc1866079507 100755 (executable)
@@ -313,4 +313,13 @@ test_expect_success 'ls-remote patterns work with all protocol versions' '
        test_cmp expect actual.v2
 '
 
+test_expect_success 'ls-remote prefixes work with all protocol versions' '
+       git for-each-ref --format="%(objectname)        %(refname)" \
+               refs/heads/ refs/tags/ >expect &&
+       git -c protocol.version=1 ls-remote --heads --tags . >actual.v1 &&
+       test_cmp expect actual.v1 &&
+       git -c protocol.version=2 ls-remote --heads --tags . >actual.v2 &&
+       test_cmp expect actual.v2
+'
+
 test_done