Last active
July 22, 2019 19:57
-
-
Save kinoute/29b3e7acef63b7cb94cce5a7ef06e302 to your computer and use it in GitHub Desktop.
Git add, commit, and push, in a single unix alias command.
This file contains 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
function acp() { | |
git add . | |
git commit -m "$*" | |
git push origin master | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment