2011-06-10 21:38:59 +08:00
|
|
|
# Mercurial
|
2012-01-06 06:39:13 +08:00
|
|
|
alias hgc='hg commit'
|
|
|
|
alias hgb='hg branch'
|
2011-06-10 21:38:59 +08:00
|
|
|
alias hgba='hg branches'
|
2013-04-09 18:11:51 +08:00
|
|
|
alias hgbk='hg bookmarks'
|
2011-06-10 21:38:59 +08:00
|
|
|
alias hgco='hg checkout'
|
|
|
|
alias hgd='hg diff'
|
|
|
|
alias hged='hg diffmerge'
|
|
|
|
# pull and update
|
2013-03-11 18:24:12 +08:00
|
|
|
alias hgi='hg incoming'
|
2013-06-08 05:36:07 +08:00
|
|
|
alias hgic='hg incoming | grep "changeset" | wc -l'
|
2012-01-06 06:39:13 +08:00
|
|
|
alias hgl='hg pull -u'
|
2013-03-27 14:16:46 +08:00
|
|
|
alias hglr='hg pull --rebase'
|
2013-03-11 18:24:12 +08:00
|
|
|
alias hgo='hg outgoing'
|
2013-06-08 05:36:07 +08:00
|
|
|
alias hgoc='hg outgoing | grep 'changeset' | wc -l'
|
2012-01-06 06:39:13 +08:00
|
|
|
alias hgp='hg push'
|
|
|
|
alias hgs='hg status'
|
2011-06-10 21:38:59 +08:00
|
|
|
# this is the 'git commit --amend' equivalent
|
|
|
|
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
|
2012-10-06 04:27:05 +08:00
|
|
|
|
|
|
|
function hg_current_branch() {
|
|
|
|
if [ -d .hg ]; then
|
|
|
|
echo hg:$(hg branch)
|
|
|
|
fi
|
2013-03-11 18:24:12 +08:00
|
|
|
}
|