X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft5510-fetch.sh;h=9e679b402dc826185377c431d353decd8a8a2bed;hb=e89c6ea9988fc039a17875eb9cbdea245e96ed67;hp=52094e78dcd63cd7dc1ce166450c403fc32efbac;hpb=141201d124f3663a98e0f362c1af7f5f7b58dabb;p=git.git diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh index 52094e78d..9e679b402 100755 --- a/t/t5510-fetch.sh +++ b/t/t5510-fetch.sh @@ -303,6 +303,26 @@ test_expect_success 'pushing nonexistent branch by mistake should not segv' ' ' +test_expect_success 'auto tag following fetches minimum' ' + + cd "$D" && + git clone .git follow && + git checkout HEAD^0 && + ( + for i in 1 2 3 4 5 6 7 + do + echo $i >>file && + git commit -m $i -a && + git tag -a -m $i excess-$i || exit 1 + done + ) && + git checkout master && + ( + cd follow && + git fetch + ) +' + test_expect_success 'refuse to fetch into the current branch' ' test_must_fail git fetch . side:master