Created
October 5, 2020 21:58
-
-
Save tombohub/c0c9ab2688b9ccd18ec89dd35af9778a to your computer and use it in GitHub Desktop.
Git add commit and push all in one go
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
#!/bin/bash | |
git add . | |
git commit -m "$1" | |
git push | |
## usage: | |
## ./git-push.sh 'your commit comment here' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment