Mercurial: pull changes from unversioned copy
Posted
by Austin Hyde
on Stack Overflow
See other posts from Stack Overflow
or by Austin Hyde
Published on 2010-06-07T19:44:18Z
Indexed on
2010/06/07
21:12 UTC
Read the original article
Hit count: 341
version-control
|mercurial
I am currently maintaining a Mercurial repository of the project I am working on.
The rest of the team, however, doesn't.
There is a "good" (unversioned) copy of the code base that I can access by SSH. What I would like to do is be able to do something like an hg pull
from that good copy into my master repository whenever it gets updated.
As far as I can tell, there's no obvious way to do this, as hg pull
requires you have a source hg repository.
I suppose I could use a utility like rsync
to update my repository, then commit, but I was wondering:
Is there was an easier/less contrived way to do this?
© Stack Overflow or respective owner