Merge branch 'sc/doc-howto-dumb-http' into maint
[gitweb.git] / t / t5500-fetch-pack.sh
index 7a22f557b99224fd1cb64e9970272bee98f773d7..d87ddf73b7127bc624ca739653db9389831b817e 100755 (executable)
@@ -516,4 +516,20 @@ test_expect_success 'test --all, --depth, and explicit tag' '
        ) >out-adt 2>error-adt
 '
 
+test_expect_success 'shallow fetch with tags does not break the repository' '
+       mkdir repo1 &&
+       (
+               cd repo1 &&
+               git init &&
+               test_commit 1 &&
+               test_commit 2 &&
+               test_commit 3 &&
+               mkdir repo2 &&
+               cd repo2 &&
+               git init &&
+               git fetch --depth=2 ../.git master:branch &&
+               git fsck
+       )
+'
+
 test_done