# HG changeset patch # User Bryan O'Sullivan # Date 1160695620 25200 # Node ID 97638d862ef3d7b2908dfb75175fd404c03fd16e # Parent 72d207927dc4932d857dafa380463439a44a70df Network bits. diff -r 72d207927dc4 -r 97638d862ef3 en/examples/tour --- a/en/examples/tour Thu Oct 12 16:15:16 2006 -0700 +++ b/en/examples/tour Thu Oct 12 16:27:00 2006 -0700 @@ -123,3 +123,14 @@ #$ name: push.nothing hg push ../hello-push + +#$ name: outgoing.net + +hg outgoing http://hg.serpentine.com/tutorial/hello + +#$ name: push.net + +hg push http://hg.serpentine.com/tutorial/hello + +#$ name: +exit 0 diff -r 72d207927dc4 -r 97638d862ef3 en/tour.tex --- a/en/tour.tex Thu Oct 12 16:15:16 2006 -0700 +++ b/en/tour.tex Thu Oct 12 16:27:00 2006 -0700 @@ -500,6 +500,18 @@ repository already has those changes? Nothing too exciting. \interaction{tour.push.nothing} +\subsection{Sharing changes over a network} + +The commands we have covered in the previous few sections are not +limited to working with local repositories. Each works in exactly the +same fashion over a network connection; simply pass in a URL instead +of a local path. +\interaction{tour.outgoing.net} +In this example, we can see what changes we could push to the remote +repository, but the repository is understandably not set up to let +anonymous users push to it. +\interaction{tour.push.net} + %%% Local Variables: %%% mode: latex %%% TeX-master: "00book"