changeset 93:97638d862ef3

Network bits.
author Bryan O'Sullivan <bos@serpentine.com>
date Thu, 12 Oct 2006 16:27:00 -0700
parents 72d207927dc4
children 0b97b0bdc830
files en/examples/tour en/tour.tex
diffstat 2 files changed, 23 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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"