From: Michael Haggerty <mhagger@xxxxxxxxxxxx> The reference name should be a full one, so adjust the check accordingly. Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- sha1_name.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sha1_name.c b/sha1_name.c index 03ffc2c..335da37 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -883,7 +883,7 @@ int strbuf_check_branch_ref(struct strbuf *sb, const char *name) if (name[0] == '-') return -1; strbuf_splice(sb, 0, 0, "refs/heads/", 11); - return check_refname_format(sb->buf, 0); + return check_refname_format(sb->buf, REFNAME_FULL); } /* -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html