tj.git-extras/bin/git-touch
2010-10-15 09:26:45 -07:00

9 lines
122 B
Bash
Executable file

#!/bin/sh
filename=$1
test -z $filename && echo "filename required" && exit 1
touch $filename \
&& git add $filename