aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-01-13 23:09:50 -0800
committerJunio C Hamano <gitster@pobox.com>2009-01-13 23:09:50 -0800
commit9735a4444022c7b5d4256020f2c1b20e18bc9ade (patch)
tree412a6bb7ff853c75361fecad63dba0398de3bc4c /t
parent132d04b565d20ebc50ba6dd34bf6a9913bbbe6a1 (diff)
parentc9a42c4a12cec17e858b76d6c68aa17c12c0aef1 (diff)
downloadgit-9735a4444022c7b5d4256020f2c1b20e18bc9ade.tar.gz
git-9735a4444022c7b5d4256020f2c1b20e18bc9ade.tar.xz
Merge branch 'js/bundle-tags'
* js/bundle-tags: bundle: allow rev-list options to exclude annotated tags
Diffstat (limited to 't')
-rwxr-xr-xt/t5704-bundle.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/t/t5704-bundle.sh b/t/t5704-bundle.sh
new file mode 100755
index 000000000..a8f4419e6
--- /dev/null
+++ b/t/t5704-bundle.sh
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+test_description='some bundle related tests'
+. ./test-lib.sh
+
+test_expect_success 'setup' '
+
+ : > file &&
+ git add file &&
+ test_tick &&
+ git commit -m initial &&
+ test_tick &&
+ git tag -m tag tag &&
+ : > file2 &&
+ git add file2 &&
+ : > file3 &&
+ test_tick &&
+ git commit -m second &&
+ git add file3 &&
+ test_tick &&
+ git commit -m third
+
+'
+
+test_expect_success 'tags can be excluded by rev-list options' '
+
+ git bundle create bundle --all --since=7.Apr.2005.15:16:00.-0700 &&
+ git ls-remote bundle > output &&
+ ! grep tag output
+
+'
+
+test_done