From: しらいしななこ Date: Sat, 28 Jul 2007 01:44:48 +0000 (+0900) Subject: git-stash: Make sure reflog is created for refs/stash X-Git-Tag: v1.5.3-rc4~53 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f12e925ac23ad6169e046cfe05b8438a1611ad58;p=git.git git-stash: Make sure reflog is created for refs/stash Earlier commit 7ab3cc70 fixed "stash clear" but broke save_stash, because it forgot to make sure the reflog file exists before saving. Signed-off-by: Nanako Shiraishi Signed-off-by: Junio C Hamano --- diff --git a/git-stash.sh b/git-stash.sh index f90dffd4c..0073e9df5 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -36,6 +36,9 @@ save_stash () { test -f "$GIT_DIR/logs/$ref_stash" || clear_stash || die "Cannot initialize stash" + # Make sure the reflog for stash is kept. + : >>"$GIT_DIR/logs/$ref_stash" + # state of the base commit if b_commit=$(git rev-parse --verify HEAD) then