diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-06-08 02:55:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-08 02:55:19 -0700 |
commit | abc403f58452da667b261274a1091af61dfec35c (patch) | |
tree | 93e073859ddce0d1f2ce9067cb1adf93d73c9b7f | |
parent | 16befb8b7fbfcc9b2d38931f4081669558300adf (diff) | |
parent | 5035242c4785bd23c53827a1656b5f97394f724e (diff) | |
download | git-abc403f58452da667b261274a1091af61dfec35c.tar.gz |
Merge branch 'maint'
* maint:
checkout: do not get confused with ambiguous tag/branch names
-rwxr-xr-x | git-checkout.sh | 3 | ||||
-rwxr-xr-x | t/t7201-co.sh | 40 |
2 files changed, 42 insertions, 1 deletions
diff --git a/git-checkout.sh b/git-checkout.sh index d561c88dcb..33f1e87c0c 100755 --- a/git-checkout.sh +++ b/git-checkout.sh @@ -63,12 +63,13 @@ while [ "$#" != "0" ]; do echo "unknown flag $arg" exit 1 fi - new="$rev" new_name="$arg" if git-show-ref --verify --quiet -- "refs/heads/$arg" then + rev=$(git-rev-parse --verify "refs/heads/$arg^0") branch="$arg" fi + new="$rev" elif rev=$(git-rev-parse --verify "$arg^{tree}" 2>/dev/null) then # checking out selected paths from a tree-ish. diff --git a/t/t7201-co.sh b/t/t7201-co.sh index 5fa6a45577..ed2e9ee3c6 100755 --- a/t/t7201-co.sh +++ b/t/t7201-co.sh @@ -190,4 +190,44 @@ test_expect_success 'checkout to detach HEAD with HEAD^0' ' fi ' +test_expect_success 'checkout with ambiguous tag/branch names' ' + + git tag both side && + git branch both master && + git reset --hard && + git checkout master && + + git checkout both && + H=$(git rev-parse --verify HEAD) && + M=$(git show-ref -s --verify refs/heads/master) && + test "z$H" = "z$M" && + name=$(git symbolic-ref HEAD 2>/dev/null) && + test "z$name" = zrefs/heads/both + +' + +test_expect_success 'checkout with ambiguous tag/branch names' ' + + git reset --hard && + git checkout master && + + git tag frotz side && + git branch frotz master && + git reset --hard && + git checkout master && + + git checkout tags/frotz && + H=$(git rev-parse --verify HEAD) && + S=$(git show-ref -s --verify refs/heads/side) && + test "z$H" = "z$S" && + if name=$(git symbolic-ref HEAD 2>/dev/null) + then + echo "Bad -- should have detached" + false + else + : happy + fi + +' + test_done |