repo.or.cz
/
guilt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
patchbomb: added --git option
[guilt.git]
/
guilt-rm
blob
77e855360a82ac3f167cc03fe4f739b40020ffda
1
#!/bin/sh
2
#
3
# Copyright (c) Josef "Jeff" Sipek, 2006, 2007
4
#
5
6
USAGE
=
"<file>..."
7
.
`dirname
$0
`
/
guilt
8
9
if
[
$#
-lt
1
];
then
10
usage
11
fi
12
13
git
rm
--
"$@"
14