Corrected SSH configuration example in pull help.
authorThomas Arendsen Hein <thomas@intevation.de>
Thu, 19 Oct 2006 13:00:02 +0200
changeset 3471 be2bf7263276
parent 3470 c6773b7ebee8
child 3472 df7202f6887c
Corrected SSH configuration example in pull help.
mercurial/commands.py
--- a/mercurial/commands.py	Thu Oct 19 10:23:27 2006 +0200
+++ b/mercurial/commands.py	Thu Oct 19 13:00:02 2006 +0200
@@ -2103,11 +2103,11 @@
       Use an extra slash at the start of a path to specify an absolute path:
         ssh://example.com//tmp/repository
     - Mercurial doesn't use its own compression via SSH; the right thing
-      to do is to configure it in your ~/.ssh/ssh_config, e.g.:
+      to do is to configure it in your ~/.ssh/config, e.g.:
         Host *.mylocalnetwork.example.com
-          Compression off
+          Compression no
         Host *
-          Compression on
+          Compression yes
       Alternatively specify "ssh -C" as your ssh command in your hgrc or
       with the --ssh command line option.
     """