When pushing changes to a remote repository, is it not possible to automatically run update there so the changes/files are available?
Mercurial and TortoiseHG - Update remote repository after pushing changes
Asked Answered
added the hg update command to run remote when pushing –
Cachalot
Use changegroup
hook on the remote side, as described in the Mercurial FAQ.
Edit .hg/hgrc on the remote repository and add:
[hooks]
changegroup.UpdateOnPush = hg update
© 2022 - 2024 — McMap. All rights reserved.