Skip to content

Instantly share code, notes, and snippets.

@brunopulis
Created June 13, 2013 02:43
Show Gist options
  • Save brunopulis/5770882 to your computer and use it in GitHub Desktop.
Save brunopulis/5770882 to your computer and use it in GitHub Desktop.
Atalhos no terminal para comandos do GIT
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