Created
June 13, 2013 02:43
-
-
Save brunopulis/5770882 to your computer and use it in GitHub Desktop.
Atalhos no terminal para comandos do GIT
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 alias.st status | |
git config alias.cm commit | |
git config alias.bh branch | |
git config alias.lg log -p | |
git config alias.ck checkout | |
git config alias.lg1 log --name-only | |
# Alias Avançados | |
git config alias.cmm commit -a -m | |
git config alias.rbmt rebase master | |
git config alias.mgwk merge working | |
git config alias.pullom pull origin master | |
git config alias.pushom push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment