Code

Update reflog message created for stashes
authorJunio C Hamano <gitster@pobox.com>
Wed, 4 Jul 2007 19:37:17 +0000 (12:37 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 4 Jul 2007 19:37:17 +0000 (12:37 -0700)
A stash is about a change on top of an existing commit, and not
about that commit that happened to be on which the change was
created.  Match the message we see in "git stash list" with the
commit log message to make this clear.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
git-stash.sh

index 9deda443eddd6c12f8c8926610a6de8634bd6dec..fa8ae7bc29235658aa5741d1baac57b877c17681 100755 (executable)
@@ -71,7 +71,7 @@ save_stash () {
                git commit-tree $w_tree -p $b_commit -p $i_commit) ||
                die "Cannot record working tree state"
 
-       git update-ref -m "$msg" $ref_stash $w_commit ||
+       git update-ref -m "WIP on $msg" $ref_stash $w_commit ||
                die "Cannot save the current status"
        printf >&2 'Saved WIP on %s\n' "$msg"
 }