brunopulis
6/13/2013 - 2:43 AM

Atalhos no terminal para comandos do GIT

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