aboutsummaryrefslogtreecommitdiff
path: root/git-stash.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-08-06 14:35:25 -0400
committerJunio C Hamano <gitster@pobox.com>2014-08-07 14:37:28 -0700
commit288c67caf64af111aeb7c45cb8b6ba586a61c724 (patch)
tree37761c65c970123072f59d3cbdf0700ed9d4ef6b /git-stash.sh
parentd31f3ad23dd1aee3c3e1015a43b02b995c01a9a1 (diff)
downloadgit-288c67caf64af111aeb7c45cb8b6ba586a61c724.tar.gz
git-288c67caf64af111aeb7c45cb8b6ba586a61c724.tar.xz
stash: default listing to working-tree diff
When you list stashes, you can provide arbitrary git-log options to change the display. However, adding just "-p" does nothing, because each stash is actually a merge commit. This implementation detail is easy to forget, leading to confused users who think "-p" is not working. We can make this easier by defaulting to "--first-parent -m", which will show the diff against the working tree. This omits the index portion of the stash entirely, but it's simple and it matches what "git stash show" provides. People who are more clueful about stash's true form can use "--cc" to override the "-m", and the "--first-parent" will then do nothing. For diffs, it only affects non-combined diffs, so "--cc" overrides it. And for the traversal, we are walking the linear reflog anyway, so we do not even care about the parents. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-xgit-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh
index 4798bcf0e..091c95cac 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -296,7 +296,7 @@ have_stash () {
list_stash () {
have_stash || return 0
- git log --format="%gd: %gs" -g "$@" $ref_stash --
+ git log --format="%gd: %gs" -g --first-parent -m "$@" $ref_stash --
}
show_stash () {