Last active
June 19, 2016 19:23
-
-
Save marti1125/e477c20709ed79b7063777a211d9a2ee to your computer and use it in GitHub Desktop.
Git Aliases
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 config --global alias.go checkout | |
git config --global alias.br branch | |
git config --global alias.st status | |
git config --global alias.ci commit | |
git config --global alias.a "add ." | |
git config --global alias.u "add -u" | |
git config --global alias.pullmaster 'pull origin master' | |
git config --global alias.pushmaster 'push origin master' |
git config --global alias.plm 'pull origin master'
git config --global alias.psm 'push origin master'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
example git go dev (for change branch)