问题
When pushing changes to a remote repository, is it not possible to automatically run update there so the changes/files are available?
回答1:
Use changegroup
hook on the remote side, as described in the Mercurial FAQ.
回答2:
Edit .hg/hgrc on the remote repository and add:
[hooks]
changegroup.UpdateOnPush = hg update
来源:https://stackoverflow.com/questions/6924143/mercurial-and-tortoisehg-update-remote-repository-after-pushing-changes