Fix --authdate date parsing (other formats)
[stgit/kha.git] / contrib / stg-show
blob8c6154043abd8cf8ba8a2ca4b0785051de200e10
1 #!/bin/bash
2 set -e
4 # stg-show - unlike "stg show", just "git show" with knowledge of stg refs
6 # Ex:
7 # stg-show --color-words -- files
9 # Copyright (c) 2007 Yann Dirson <ydirson@altern.org>
10 # Subject to the GNU GPL, version 2.
12 command=(git show)
14 # subsitute git id's for stg ones until --
15 endofpatches=0
16 while [ "$#" -gt 0 ]; do
17 case "$1" in
18 --) endofpatches=1; break ;;
19 -*) command+=("$1"); shift ;;
20 *) command+=( $(stg id "$1" 2>/dev/null || echo "$1") ); shift ;;
21 esac
22 done
24 # append remaining args
25 command+=("$@")
27 eval "${command[@]}"