Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Alter git-checkout reflog message to include "from" branch
author
Sean
<seanlkml@sympatico.ca>
Wed, 4 Jul 2007 08:33:36 +0000
(
04:33
-0400)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 4 Jul 2007 19:56:02 +0000
(12:56 -0700)
As suggested by Junio, adding the current branch name to the
reflog message for git-checkout would be helpful. For example:
"checkout: moving from next to master"
Signed-off-by: Sean Estabrooks <seanlkml@sympatico.ca>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-checkout.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
ef6f0af
)
diff --git
a/git-checkout.sh
b/git-checkout.sh
index e00b697fef66adecaade1b9f6e7b7600f822e251..17f43927aa7b766c1ba28150c4945fac7ff3e132 100755
(executable)
--- a/
git-checkout.sh
+++ b/
git-checkout.sh
@@
-259,7
+259,8
@@
if [ "$?" -eq 0 ]; then
fi
if test -n "$branch"
then
- GIT_DIR="$GIT_DIR" git symbolic-ref -m "checkout: moving to $branch" HEAD "refs/heads/$branch"
+ old_branch_name=`expr "z$oldbranch" : 'zrefs/heads/\(.*\)'`
+ GIT_DIR="$GIT_DIR" git symbolic-ref -m "checkout: moving from $old_branch_name to $branch" HEAD "refs/heads/$branch"
if test -n "$quiet"
then
true # nothing