ref_transaction_commit(): do not capitalize error messages
[gitweb.git] / t / t5520-pull.sh
index 5195a218a25f26f32978f80c3a3566c3529d8e8c..7efd45bc27687a619d149bb581cb6cb2582241e9 100755 (executable)
@@ -76,6 +76,15 @@ test_expect_success 'pulling into void does not remove new staged files' '
        )
 '
 
+test_expect_success 'pulling into void must not create an octopus' '
+       git init cloned-octopus &&
+       (
+               cd cloned-octopus &&
+               test_must_fail git pull .. master master &&
+               ! test -f file
+       )
+'
+
 test_expect_success 'test . as a remote' '
 
        git branch copy master &&