summaryrefslogtreecommitdiff
path: root/send-pack.c
diff options
context:
space:
mode:
authorDaniel Barkalow <barkalow@iabervon.org>2007-05-25 01:20:56 -0400
committerJunio C Hamano <junkio@cox.net>2007-05-26 01:20:10 -0700
commit8558fd9ece4c8250a037a6d5482a8040d600ef47 (patch)
treea8a81811e686e23a90e201348f9397f6f17506c8 /send-pack.c
parentb516968ff62ec153e008d033c153affd7ba9ddc6 (diff)
downloadgit-8558fd9ece4c8250a037a6d5482a8040d600ef47.tar.gz
Move refspec pattern matching to match_refs().
This means that send-pack and http-push will support pattern refspecs, so builtin-push.c doesn't have to expand them, and also git push can just turn --tags into "refs/tags/*", further simplifying builtin-push.c check_ref_format() gets a third "conditionally okay" result for something that's valid as a pattern but not as a particular ref. Signed-off-by: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'send-pack.c')
-rw-r--r--send-pack.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/send-pack.c b/send-pack.c
index 2c0b19ba34..fecbda981b 100644
--- a/send-pack.c
+++ b/send-pack.c
@@ -354,6 +354,7 @@ static void verify_remote_names(int nr_heads, char **heads)
case -2: /* ok but a single level -- that is fine for
* a match pattern.
*/
+ case -3: /* ok but ends with a pattern-match character */
continue;
}
die("remote part of refspec is not a valid name in %s",