6 lines
114 B
Bash
6 lines
114 B
Bash
|
#Adds a commit message and pushes project to github repository.
|
||
|
#
|
||
|
git add -u
|
||
|
git add *
|
||
|
git commit -m "$*"
|
||
|
git push
|