repo.or.cz
/
herrie-working.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added anchor, so actual song does not run away from window during playback.
[herrie-working.git]
/
creatediff
blob
1a309b8728f72e460001d3ea78449eca874ce8c8
1
#!/bin/sh
2
3
from
=
"herrie-
$1
"
4
to
=
"master"
5
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
16
fi
17
18
git
diff
"
$from
:herrie"
"
$to
:herrie"