Hi, When calling "git stash save" in a clean situation (no change since last commit), git-stash reports "No local changes to save", which is OK. But it exits with code 0, despite no stash has been saved. It would be better to exit with code 1 in this case. N.B. In a similar situation "git commit -a -m 'Test'" reports > On branch master > nothing to commit, working directory clean and exits with code 1. Thanks diff -u git-master/git-stash.sh exit1/git-stash.sh --- git-master/git-stash.sh 2014-12-22 20:43:48.000000000 +0000 +++ exit1/git-stash.sh 2014-12-24 08:59:00.804150443 +0000 @@ -257,7 +257,7 @@ if no_changes then say "$(gettext "No local changes to save")" - exit 0 + exit 1 fi test -f "$GIT_DIR/logs/$ref_stash" || clear_stash || die "$(gettext "Cannot initialize stash")" -- 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