11 lines
153 B
Bash
Executable file
11 lines
153 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
|