This commit is contained in:
GitHub Merge Button 2012-01-28 09:34:58 -08:00
commit a28deecd41

View file

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