acme/bin/git+
2017-08-16 18:46:25 +03:00

10 lines
156 B
Bash
Executable file

#!/usr/bin/env bash
if [ $# -eq 0 ]; then
echo 'Where is my commit message, bro?'
exit 1
fi
git add -A
git commit -m ''"$*"''
git push -u origin master