summaryrefslogtreecommitdiff
path: root/t/t5511-refspec.sh
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2008-04-28 15:32:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-05-05 00:41:39 (GMT)
commita83619d692deeb2565335144078465acb2dd1457 (patch)
tree568c8aa7b0092ee996e1a4612e89ff252d61ac60 /t/t5511-refspec.sh
parentc697ad143ba1ff58b29e7efe149d244d4b7010a5 (diff)
downloadgit-a83619d692deeb2565335144078465acb2dd1457.zip
git-a83619d692deeb2565335144078465acb2dd1457.tar.gz
git-a83619d692deeb2565335144078465acb2dd1457.tar.bz2
add special "matching refs" refspec
This patch provides a way to specify "push matching heads" using a special refspec ":". This is useful because it allows "push = +:" as a way to specify that matching refs will be pushed but, in addition, forced updates will be allowed, which was not possible before. Signed-off-by: Paolo Bonzini <bonzini@gnu.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5511-refspec.sh')
-rwxr-xr-xt/t5511-refspec.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/t5511-refspec.sh b/t/t5511-refspec.sh
index 670a8f1..22ba380 100755
--- a/t/t5511-refspec.sh
+++ b/t/t5511-refspec.sh
@@ -23,10 +23,13 @@ test_refspec () {
}
test_refspec push '' invalid
-test_refspec push ':' invalid
+test_refspec push ':'
+test_refspec push '::' invalid
+test_refspec push '+:'
test_refspec fetch ''
test_refspec fetch ':'
+test_refspec fetch '::' invalid
test_refspec push 'refs/heads/*:refs/remotes/frotz/*'
test_refspec push 'refs/heads/*:refs/remotes/frotz' invalid