mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
10 lines
182 B
Bash
Executable file
10 lines
182 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
if test $# -eq 0; then
|
|
echo "arguments required" && exit 1
|
|
else
|
|
for pattern in $@; do
|
|
echo $pattern >> .gitignore
|
|
echo "... added '$pattern'"
|
|
done
|
|
fi |