git-fetch: follow lightweit tags as well.
[gitweb.git] / t / t5510-fetch.sh
index df0ae4811b29668c8c0918fec3d7b7b14369dee9..a11ab0ad41a006f9f20d8ec6172d34e6c7f92d41 100755 (executable)
@@ -66,4 +66,20 @@ test_expect_success "fetch test for-merge" '
        cut -f -2 .git/FETCH_HEAD >actual &&
        diff expected actual'
 
+test_expect_success 'fetch following tags' '
+
+       cd "$D" &&
+       git tag -a -m 'annotated' anno HEAD &&
+       git tag light HEAD &&
+
+       mkdir four &&
+       cd four &&
+       git init-db &&
+
+       git fetch .. :track &&
+       git show-ref --verify refs/tags/anno &&
+       git show-ref --verify refs/tags/light
+
+'
+
 test_done