[PATCH] Fix guilt to work correctly even if the refs are packed
[guilt.git] / guilt-applied
blob52f8470aee82a174f1030b3c3e9f5072f11f01f7
1 #!/bin/sh
3 # Copyright (c) Josef "Jeff" Sipek, 2006, 2007
6 USAGE="[-c]"
7 . `dirname $0`/guilt
9 case $# in
11 # just output the regular series-style applied list
12 cat $applied | cut -d: -f 2-
16 if [ "$1" != "-c" ]; then
17 usage
20 cat $applied | sed -e 's/:/ /'
24 usage
26 esac