Created
July 13, 2018 19:16
-
-
Save AngheloAlf/95b02a149484ec0cf6afe195098f82c4 to your computer and use it in GitHub Desktop.
A little bash script for commiting files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git add -A | |
if [ $# -eq 0 ] | |
then | |
git commit -a -m "autopush" | |
else | |
git commit -a -m "$1" | |
fi | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment