diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-27 21:51:29 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-27 21:51:29 -0700 |
commit | 2b83ade9778552526abbe34ae03a57da52a7433d (patch) | |
tree | 617052a511f352c0f18e97147b2f28b027fb0026 /git-checkout.sh | |
parent | f2ce6a4c3c9dba3b2366e4c48bb7f417a2cb7fb8 (diff) | |
parent | 5a03e7f25334a6bf1dbbfdb9830d41de5b8f0d7f (diff) | |
download | git-2b83ade9778552526abbe34ae03a57da52a7433d.tar.gz |
Merge branch 'sp/void'
* sp/void:
Allow git-checkout when on a non-existant branch.
Diffstat (limited to 'git-checkout.sh')
-rwxr-xr-x | git-checkout.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/git-checkout.sh b/git-checkout.sh index 580a9e8a23..dd477245fb 100755 --- a/git-checkout.sh +++ b/git-checkout.sh @@ -4,8 +4,8 @@ USAGE='[-f] [-b <new_branch>] [-m] [<branch>] [<paths>...]' SUBDIRECTORY_OK=Sometimes . git-sh-setup -old=$(git-rev-parse HEAD) old_name=HEAD +old=$(git-rev-parse --verify $old_name 2>/dev/null) new= new_name= force= @@ -139,6 +139,13 @@ fi die "git checkout: to checkout the requested commit you need to specify a name for a new branch which is created and switched to" +if [ "X$old" = X ] +then + echo "warning: You do not appear to currently be on a branch." >&2 + echo "warning: Forcing checkout of $new_name." >&2 + force=1 +fi + if [ "$force" ] then git-read-tree --reset -u $new |