sharing mercurial with another user
Arne Babenhauserheide
arne_bab at web.de
Fri Dec 28 13:30:13 UTC 2012
> On Dec 25, 2012, at 3:20 PM, Dan page wrote:
> > I know this maybe an easy question but suppose I set up
> > a mercurial repository. How can I share it with other users?
Am Dienstag, 25. Dezember 2012, 14:44:51 schrieb Bob Hood:
> An unsecured share can be as simple as running the "serve" command within
> your repository's working directory:
>
> $ hg serve
> listening at http://<host>:8000/ (bound to *:8000)
Am Mittwoch, 26. Dezember 2012, 10:35:42 schrieb Kevin Bullock:
> One easy way is using Bitbucket <http://bitbucket.org/>.
>
> If you also share SSH access to a server with the people you're sharing the
> repository with, you can give them access to it that way. See
> <http://mercurial.selenic.com/wiki/MultipleCommitters>.
>
> If you want to set up your own hgweb instance, behind Apache, Nginx, or
> anything else that supports WSGI, start with
> <http://mercurial.selenic.com/wiki/PublishingRepositories>.
Also you can simply bundle the repo and send it as a plain file:
hg bundle --all repo.bundle
Others can then just clone the bundle to get your repo:
hg clone repo.bundle repo
(you can also bundle partial history, for example just your changes to an
existing repo. Others can then pull from that bundle. See `hg help bundle`)
Best wishes,
Arne
--
1w6 sie zu achten,
sie alle zu finden,
in Spiele zu leiten
und sacht zu verbinden.
→ http://1w6.org
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 316 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.mercurial-scm.org/pipermail/mercurial/attachments/20121228/a58d4b94/attachment.asc>
More information about the Mercurial
mailing list