Added alias to clear .orig files on mercurial plugin

This commit is contained in:
tinogomes 2012-01-28 14:51:09 -02:00
commit ad5aecc382

View file

@ -1,4 +1,3 @@
# Mercurial # Mercurial
alias hgc='hg commit' alias hgc='hg commit'
alias hgb='hg branch' alias hgb='hg branch'
@ -12,3 +11,6 @@ alias hgp='hg push'
alias hgs='hg status' alias hgs='hg status'
# this is the 'git commit --amend' equivalent # this is the 'git commit --amend' equivalent
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip' alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
# Remove all .orig files
alias hgclear='find . -name "*.orig" -delete'