summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-10-19 02:18:21 -0400
committerShawn O. Pearce <spearce@spearce.org>2007-10-19 02:18:21 -0400
commit7840ce6cb24a9d65152d45e08f5d7cf7dc97a2e3 (patch)
treeb5de550bb332eabf93b5391ad299bba3e1144fa5
parentf5bf6feb05b8c89c448ded6e6fad0eb58ef35463 (diff)
parente7187e4e0fece6c2947fbceff251f3ce69ae0aa8 (diff)
downloadgit-7840ce6cb24a9d65152d45e08f5d7cf7dc97a2e3.tar.gz
Merge branch 'maint'
* maint: Paper bag fix diff invocation in 'git stash show'
-rwxr-xr-xgit-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh
index def3163ebb..5bbda47b7b 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -110,7 +110,7 @@ show_stash () {
w_commit=$(git rev-parse --verify "$s") &&
b_commit=$(git rev-parse --verify "$s^") &&
- git diff-tree $flags $b_commit $w_commit
+ git diff $flags $b_commit $w_commit
}
apply_stash () {