summaryrefslogtreecommitdiff
path: root/t/t5510-fetch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-09-22 06:50:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-09-22 06:50:01 (GMT)
commit494202524f76ac0385ae483abf970c4c9c692a77 (patch)
treea7e3a8674a9bc2fdfc43a23c3e678e63c5512f1c /t/t5510-fetch.sh
parentfe33b333af6e72d74e80da16517cb6d33283c7f7 (diff)
downloadgit-494202524f76ac0385ae483abf970c4c9c692a77.zip
git-494202524f76ac0385ae483abf970c4c9c692a77.tar.gz
git-494202524f76ac0385ae483abf970c4c9c692a77.tar.bz2
t5510: test "git fetch" following tags minimally
When "git fetch" auto-follows tags, it should not download excess ones. This new test makes sure that condition. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5510-fetch.sh')
-rwxr-xr-xt/t5510-fetch.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
index de26c20..9aae496 100755
--- a/t/t5510-fetch.sh
+++ b/t/t5510-fetch.sh
@@ -303,4 +303,24 @@ 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_done