diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-01-13 23:09:50 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-13 23:09:50 -0800 |
commit | 9735a4444022c7b5d4256020f2c1b20e18bc9ade (patch) | |
tree | 412a6bb7ff853c75361fecad63dba0398de3bc4c /t | |
parent | 132d04b565d20ebc50ba6dd34bf6a9913bbbe6a1 (diff) | |
parent | c9a42c4a12cec17e858b76d6c68aa17c12c0aef1 (diff) | |
download | git-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-x | t/t5704-bundle.sh | 33 |
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 |