mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
9 lines
122 B
Bash
Executable file
9 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
|
|
filename=$1
|
|
|
|
test -z $filename && echo "filename required" && exit 1
|
|
|
|
touch $filename \
|
|
&& git add $filename
|