You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
362 B
14 lines
362 B
|
|
# Mercurial |
|
alias hgc='hg commit -v' |
|
alias hgb='hg branch -v' |
|
alias hgba='hg branches' |
|
alias hgco='hg checkout' |
|
alias hgd='hg diff' |
|
alias hged='hg diffmerge' |
|
# pull and update |
|
alias hgl='hg pull -u -v' |
|
alias hgp='hg push -v' |
|
alias hgs='hg status -v' |
|
# this is the 'git commit --amend' equivalent |
|
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
|
|
|