mirror of
https://github.com/tj/git-extras.git
synced 2026-09-12 16:36:22 -04:00
9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test $# -lt 1 && echo "filename required" 1>&2 && exit 1
|
|
|
|
filenames="$@"
|
|
|
|
touch "$filenames" \
|
|
&& git add "$filenames"
|