Keith Derrick <[email protected]> writes:
> I couldn't find a duplicate in the JIRA instance.
Don't worry, we do not use any JIRA instance ;-)
> According to the documentation of check-ref-format, a branch name such
> as @mybranch is valid.
Correct.
> Yet 'git check-ref-format --branch @mybranch@{u}'
> claims @mybranch is an invalid branch name.
I do not think it claims any such thing.
$ git check-ref-format --branch @foo@{u}; echo $?
fatal: '@foo@{u}' is not a valid branch name
128
$ git check-ref-format --branch @foo; echo $?
@foo
0
The former asks "Is the string '@foo@{u}' a suitable name to give a
branch?" and the answer is no. The latter asks the same question
about the string '@foo', and the answer is yes.
So I do not see any bug here.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html