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