new mercurial alias hgup

hgup shows incoming changes (hg in) before pulling them (pull -u)
This commit is contained in:
Christoph Neuroth 2012-01-05 10:14:31 +01:00
commit ccf13440d8

View file

@ -7,6 +7,8 @@ alias hgco='hg checkout'
alias hgd='hg diff'
alias hged='hg diffmerge'
# pull and update
# show incoming commits with log msg, pull them in if there are any and update
alias hgup='hg in && hg pull -u -v'
alias hgl='hg pull -u -v'
alias hgp='hg push -v'
alias hgs='hg status -v'