From: Yann Dirson Date: Fri, 2 Mar 2007 21:34:28 +0000 (+0000) Subject: Add contrib/stg-show-old: show old version of a patch. X-Git-Tag: v0.13~136 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/0aa64572e76e3c710931a9bf0bedb211d3ee11d1?ds=inline Add contrib/stg-show-old: show old version of a patch. Signed-off-by: Yann Dirson --- diff --git a/contrib/stg-show-old b/contrib/stg-show-old new file mode 100755 index 0000000..acf4e7c --- /dev/null +++ b/contrib/stg-show-old @@ -0,0 +1,13 @@ +#!/bin/sh +set -e + +# stg-show-old - mini helper to look at the previous version of a +# patch (current one by default) + +# Copyright (c) 2006-2007 Yann Dirson +# Subject to the GNU GPL, version 2. + +[ "$#" -le 1 ] || { echo >&2 "Usage: $(basename $0) []"; exit 1; } +patch="$1" + +stg show "${patch}//top.old"