12 lines
100 B
Plaintext
12 lines
100 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
git add -A
|
||
|
if [ "$#" -ne 1 ]; then
|
||
|
git commit -m "a"
|
||
|
else
|
||
|
git commit -m $@
|
||
|
fi
|
||
|
git push
|
||
|
|