summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d848804)
raw | patch | inline | side by side (parent: d848804)
author | Nicolas Pitre <nico@cam.org> | |
Fri, 26 Jan 2007 16:50:06 +0000 (11:50 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 27 Jan 2007 06:38:00 +0000 (22:38 -0800) |
Doing:
$ git checkout HEAD^
Generates the following message:
|warning: you are not on ANY branch anymore.
|If you meant to create a new branch from the commit, you need -b to
|associate a new branch with the wanted checkout. Example:
| git checkout -b <new_branch_name> HEAD^
Of course if the user does as told at this point the created branch
won't be located at the expected commit. Reword this message a bit to
avoid such confusion.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
$ git checkout HEAD^
Generates the following message:
|warning: you are not on ANY branch anymore.
|If you meant to create a new branch from the commit, you need -b to
|associate a new branch with the wanted checkout. Example:
| git checkout -b <new_branch_name> HEAD^
Of course if the user does as told at this point the created branch
won't be located at the expected commit. Reword this message a bit to
avoid such confusion.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-checkout.sh | patch | blob | history |
diff --git a/git-checkout.sh b/git-checkout.sh
index c52f352f085728f0ce58895538b6f5ecff8c6d45..8500f51ea27054d328be6e7e53c9f14d0d9c1979 100755 (executable)
--- a/git-checkout.sh
+++ b/git-checkout.sh
if test -n "$oldbranch"
then
detach_warn="warning: you are not on ANY branch anymore.
-If you meant to create a new branch from the commit, you need -b to
-associate a new branch with the wanted checkout. Example:
- git checkout -b <new_branch_name> $arg"
+If you meant to create a new branch from this checkout, you may still do
+so (now or later) by using -b with the checkout command again. Example:
+ git checkout -b <new_branch_name>"
fi
elif test -z "$oldbranch" && test -n "$branch"
then