This commit is contained in:
Pablo Lalloni 2013-04-16 11:12:23 -03:00
commit 78560227f7
41 changed files with 657 additions and 77 deletions

View file

@ -19,8 +19,12 @@ alias gds='git diff --staged'
compdef _git gds=git-diff
alias gc='git commit -v'
compdef _git gc=git-commit
alias gc!='git commit -v --amend'
compdef _git gc!=git-commit
alias gca='git commit -v -a'
compdef _git gca=git-commit
compdef _git gc=git-commit
alias gca!='git commit -v -a --amend'
compdef _git gca!=git-commit
alias gco='git checkout'
compdef _git gco=git-checkout
alias gcm='git checkout master'