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
new: Create dir structure for the patch if necessary
[guilt.git]
/
guilt-rm
blob
b486dfc28748a5e17a7f8f50468fca58ef2b1da9
1
#!/bin/bash
2
#
3
# Copyright (c) Josef "Jeff" Sipek, 2006, 2007
4
#
5
6
source
"`dirname
$0
`/guilt"
7
8
USAGE
=
"
$USAGE
<file>..."
9
10
if
[
$#
-lt
1
];
then
11
echo
"
$USAGE
"
>&
2
12
exit
1
13
fi
14
15
git-rm
--
"$@"
16