Code

git-bundle: avoid packing objects which are in the prerequisites
[git.git] / t / t5510-fetch.sh
index ad589dd0dfb857ea2596e57215cf4c6e0f608afc..ee3f397a9bf8d4a08c2f897f0ae094b8ea686344 100755 (executable)
@@ -128,4 +128,15 @@ test_expect_success 'unbundle 2' '
        test "tip" = "$(git log -1 --pretty=oneline master | cut -b42-)"
 '
 
+test_expect_success 'bundle does not prerequisite objects' '
+       cd "$D" &&
+       touch file2 &&
+       git add file2 &&
+       git commit -m add.file2 file2 &&
+       git bundle create bundle3 -1 HEAD &&
+       sed "1,4d" < bundle3 > bundle.pack &&
+       git index-pack bundle.pack &&
+       test 4 = $(git verify-pack -v bundle.pack | wc -l)
+'
+
 test_done