mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
9 lines
145 B
Bash
Executable file
9 lines
145 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
filename="$*"
|
|
|
|
test -z "$filename" && echo "filename required" 1>&2 && exit 1
|
|
|
|
touch "$filename" \
|
|
&& git add "$filename"
|