diff options
author | Nicolas Pitre <nico@cam.org> | 2007-01-26 17:26:11 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-28 02:16:46 -0800 |
commit | a7e4fbf990290f955da1319ab605a59f85d3c3e2 (patch) | |
tree | 87d42483f313a65ae02075fc0c5efedf442a0e9e | |
parent | 47fc52e2876ed3a54cd4b77e0b0c4875fa3317b8 (diff) | |
download | git-a7e4fbf990290f955da1319ab605a59f85d3c3e2.tar.gz git-a7e4fbf990290f955da1319ab605a59f85d3c3e2.tar.xz |
add reflog when moving HEAD to a new branch
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-checkout.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-checkout.sh b/git-checkout.sh index ac378cdb1..1349e77f3 100755 --- a/git-checkout.sh +++ b/git-checkout.sh @@ -250,7 +250,7 @@ if [ "$?" -eq 0 ]; then fi if test -n "$branch" then - GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD "refs/heads/$branch" + GIT_DIR="$GIT_DIR" git-symbolic-ref -m "checkout: moving to $branch" HEAD "refs/heads/$branch" elif test -n "$detached" then # NEEDSWORK: we would want a command to detach the HEAD |