grm alias has been added

This commit is contained in:
Alexander Madyankin 2012-01-04 20:08:13 +06:00
commit 4647dd4332

View file

@ -36,6 +36,8 @@ alias ga='git add'
compdef _git ga=git-add compdef _git ga=git-add
alias gm='git merge' alias gm='git merge'
compdef _git gm=git-merge compdef _git gm=git-merge
alias grm="git status | grep deleted | awk '{print \$3}' | xargs git rm"
compdef _git grm=git-rm
# Git and svn mix # Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'