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
regress: cmd and shouldfail shouldn't print escapes
[guilt.git]
/
guilt-add
blob
21bc1510032374b2654580f39bcc708b31bda330
1
#!/bin/sh
2
#
3
# Copyright (c) Josef "Jeff" Sipek, 2006-2013
4
#
5
6
USAGE
=
"<file>..."
7
if
[
-z
"
$GUILT_VERSION
"
];
then
8
echo
"Invoking `basename "
$0
"` directly is no longer supported."
>&
2
9
exit
1
10
fi
11
12
_main
() {
13
14
if
[
$#
-lt
1
];
then
15
usage
16
fi
17
18
exec
git add
--
"$@"
19
20
}