Sean Estabrooks [off-list ref] writes:
quoted
-test_expect_success 'pulling into void using master:master' '
- mkdir cloned-uho &&
- (
- cd cloned-uho &&
- git init &&
- git pull .. master:master
- ) &&
- test -f file &&
- test -f cloned-uho/file &&
- test_cmp file cloned-uho/file
-
-
test_expect_success 'test . as a remote' '
git branch copy master &&
--
Instead of removing this test it should be modified or replaced
with a test that ensures the new functionality operates correctly.
In this case that would mean checking that using a full refspec
errors out.
Shouldn't "git pull .. master" still work in this case, too? So this test
will probably become two tests, one for "git pull .. master:master" that
correctly fails, and the other for "git pull .. master" to still work as
expected.