Add alias for git commit --amend --no-edit

This commit is contained in:
Maxime Fabre 2013-07-09 10:21:03 +02:00
commit ef386aa0d4

View file

@ -26,6 +26,8 @@ alias gca!='git commit -v -a --amend'
compdef _git gca!=git-commit
alias gcmsg='git commit -m'
compdef _git gcmsg=git-commit
alias gcan='git commit -v -a --amend --no-edit'
compdef _git gcan=git-commit
alias gco='git checkout'
compdef _git gco=git-checkout
alias gcm='git checkout master'