9 lines
119 B
Bash
9 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
msg="Updates"
|
||
|
else
|
||
|
msg="$1"
|
||
|
fi
|
||
|
|
||
|
git add . && git commit -m "$msg" && git push
|