Don't use glib types, to be consistent with the rest of the code.
[herrie-working.git] / creatediff
blob1a309b8728f72e460001d3ea78449eca874ce8c8
1 #!/bin/sh
3 from="herrie-$1"
4 to="master"
6 if [ $# = 0 ]
7 then
8 from="`git tag -l | tail -n 1`"
9 elif [ $# = 2 ]
10 then
11 to="herrie-$2"
12 elif [ $# != 1 ]
13 then
14 echo "usage: $0 from [to]"
15 exit 1
18 git diff "$from:herrie" "$to:herrie"