For rr/rebase-autostash, which is stalled in pu. See $gmane/225689. This is a super-minor fix anyway: if you disagree with something, change it; there's no need to ask me. As for the follow-up introducing a 'stash store', I will submit it in good time: there's no hurry. I'm working on some other interesting things in the meantime (see hot-branch and @{push}). Thanks. Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- git-rebase.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/git-rebase.sh b/git-rebase.sh index 709ef6b..5906757 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -151,16 +151,16 @@ finish_rebase () { stash_sha1=$(cat "$state_dir/autostash") if git stash apply $stash_sha1 2>&1 >/dev/null then - echo "Applied autostash" + echo "$(gettext 'Applied autostash.')" else ref_stash=refs/stash && : >>"$GIT_DIR/logs/$ref_stash" && git update-ref -m "autostash" $ref_stash $stash_sha1 \ || die "$(eval_gettext 'Cannot store $stash_sha1')" - echo " -$(gettext 'Applying autostash resulted in conflicts. + gettext 'Applying autostash resulted in conflicts. Your changes are safe in the stash. -You can apply or drop it at any time.')" +You can run "git stash pop" or "git stash drop" it at any time. +' fi fi git gc --auto && -- 1.8.3.rc3.11.geb5ebca -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html