Re: git does the wrong thing with ambiguous names
From: Brandon Casey <hidden>
Date: 2016-06-15 22:43:14
Alex Riesen wrote:
Alex Riesen, Thu, Jun 07, 2007 00:58:26 +0200:quoted
Brandon Casey, Thu, Jun 07, 2007 00:13:48 +0200:quoted
When a branch and tag have the same name, a git-checkout using that name succeeds (exits zero without complaining), switches to the _branch_, but updates the working directory contents to that specified by the _tag_. git-status show modified files.Bad. To reproduce: mkdir a && cd a && git init && :> a && git add . && git commit -m1 && :>b && git add . && git commit -m2 && git tag master HEAD^ && find .git/refs/ && gco -b new && gco master && git statusgit-rev-parse actually warns about ambguities: $ git-rev-parse --verify master warning: refname 'master' is ambiguous. dd5cdc387f2160bf04d02ac08dfdaf952f769357 It's just that the warning is thrown away in git-checkout.sh A quick and _very_ messy fix could like like that:
[snip patch] This one suffers from what Junio described previously on the mailing list, when get_sha1_basic() fails, get_sha1_1() continues trying alternatives. The risk is that one of those alternatives could match, for example if the ambiguous branch and tag name is 'dead'. -brandon