I currently maintain the repository of the Mercurial project I'm working on.
The rest of the team, however, does not.
There is a “good” (unversioned) copy of the code base that I can access through SSH. What I would like to do is make something like hg pullfrom this good copy into my main repository whenever it is updated.
As far as I can tell, there is no obvious way to do this, as it hg pullrequires an original hg repository.
I guess I could use a utility like rsyncto update my repository and then commit, but I was wondering:
Was there an easier / less inventive way to do this?
source
share