X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/a3e456434ff7ab75d0cae96c22329a3262764444..1629f59ff44b517fd0e738aca41d5657d083d842:/contrib/stg-whatchanged diff --git a/contrib/stg-whatchanged b/contrib/stg-whatchanged index f80d0a1..f1f5308 100755 --- a/contrib/stg-whatchanged +++ b/contrib/stg-whatchanged @@ -23,15 +23,11 @@ fi # Merges via "push" leave top=bottom so we must look at old patch # in this case (unlike, eg., "pick --fold") -patchdir="$(git-rev-parse --git-dir)/patches/$(stg branch)/$(stg top)" -if [ $(cat "$patchdir/bottom") = $(cat "$patchdir/top") ]; -then - current_cmd="stg show //top.old" -else - current_cmd="stg show" -fi +patchdir="$(git rev-parse --git-dir)/patches/$(stg branch)/patches/$(stg top)" +case $(stg log | head -n1) in + *push\(c\)*) former="//top.old" ;; + *) former="//top" ;; +esac -colordiff "$@" \ - -I '^index [0-9a-b]*..[0-9a-b]*' \ - -I '^@@ .* @@' \ - <($current_cmd) <(stg diff -r//bottom) | less -RFX +stg-mdiff -o "$*" \ + $former //bottom..