OSDN Git Service

stash: end commit log with a newline
authorUwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
Tue, 3 Jul 2007 08:59:06 +0000 (10:59 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 4 Jul 2007 02:04:49 +0000 (19:04 -0700)
If I do

git cat-file commit $commitid

for a commit created by stash, the next prompt starts directly after the
shortlog of HEAD.

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

index 16979ab..9deda44 100755 (executable)
@@ -67,7 +67,7 @@ save_stash () {
                die "Cannot save the current worktree state"
 
        # create the stash
-       w_commit=$(printf 'WIP on %s' "$msg" |
+       w_commit=$(printf 'WIP on %s\n' "$msg" |
                git commit-tree $w_tree -p $b_commit -p $i_commit) ||
                die "Cannot record working tree state"