Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-16 23:41:14 +0400
committerJunio C Hamano <gitster@pobox.com>2011-08-16 23:41:14 +0400
commit1f2705e20fa5f2d3c93663296eef723f45d1fa41 (patch)
treeb8dcaa8a4a860c640058401b51ced3abbcba2630 /t
parent1320352501a73a91d77b7865993f322026d056d7 (diff)
parent588d0e834b244565863fa80e6c48c20e0db9b62f (diff)
Merge branch 'jk/tag-list-multiple-patterns' into maint
* jk/tag-list-multiple-patterns: tag: accept multiple patterns for --list
Diffstat (limited to 't')
-rwxr-xr-xt/t7004-tag.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh
index 2ac1c66079..097ce2bc83 100755
--- a/t/t7004-tag.sh
+++ b/t/t7004-tag.sh
@@ -257,6 +257,11 @@ test_expect_success \
test_cmp expect actual
'
+test_expect_success 'tag -l can accept multiple patterns' '
+ git tag -l "v1*" "v0*" >actual &&
+ test_cmp expect actual
+'
+
# creating and verifying lightweight tags:
test_expect_success \