Skip to content

Commit

Permalink
git-checkout: describe detached head correctly
Browse files Browse the repository at this point in the history
When you have a file called HEAD in the work tree, the code to report
where the HEAD is at when "git checkout $commit^0" is done triggered
unnecessary ambiguity checking.

Explicitly mark the command line with "--" and make it clear that we are
talking about a revision.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Nov 25, 2007
1 parent 788ea12 commit f0c4881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ detach_warn=
describe_detached_head () {
test -n "$quiet" || {
printf >&2 "$1 "
GIT_PAGER= git log >&2 -1 --pretty=oneline --abbrev-commit "$2"
GIT_PAGER= git log >&2 -1 --pretty=oneline --abbrev-commit "$2" --
}
}

Expand Down

0 comments on commit f0c4881

Please sign in to comment.