问题
I have a Mercurial repository on a remote VPS. The VPS has SSH access enabled. What are my options for pushing code changes from my development machine to the remote VPS?
回答1:
If your VPS has Mercurial installed, simply:
hg push ssh://username@host/path/relative/to/home
or add to the repo's hgrc
[paths]
default-push = ssh://username@host/path/relative/to/home
and just
hg push
来源:https://stackoverflow.com/questions/7623607/push-to-remote-mercurial-repository