chiark / gitweb /
New policy: Only use test_expect_failure for broken tests
[stgit] / contrib / stg-show
CommitLineData
5a30e78c
YD
1#!/bin/bash
2set -e
3
4# stg-show - unlike "stg show", just "git show" with knowledge of stg refs
5
6# Ex:
7# stg-show --color-words -- files
8
9# Copyright (c) 2007 Yann Dirson <ydirson@altern.org>
10# Subject to the GNU GPL, version 2.
11
12command=(git show)
13
14# subsitute git id's for stg ones until --
15endofpatches=0
16while [ "$#" -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
22done
23
24# append remaining args
25command+=("$@")
26
27eval "${command[@]}"