Use git add

This commit is contained in:
Federico Grandi
2020-03-03 18:36:41 +01:00
parent de8a121ebd
commit 12febc42d8
4 changed files with 19 additions and 25 deletions

View File

@@ -22,7 +22,7 @@ EOF
add() {
if $INPUT_FORCE; then f=-f; else f=; fi
find $INPUT_PATH -name "$INPUT_PATTERN" | while read x; do git add $f $x; done
git add $INPUT_ADD $f
}
remove() {