clone: change name of --stream to --uncompressed.
mpm asked for this.
--- a/mercurial/commands.py Sat Jul 15 09:19:40 2006 -0700
+++ b/mercurial/commands.py Sat Jul 15 16:06:05 2006 -0700
@@ -970,7 +970,7 @@
ui.setconfig_remoteopts(**opts)
hg.clone(ui, ui.expandpath(source), dest,
pull=opts['pull'],
- stream=opts['stream'],
+ stream=opts['uncompressed'],
rev=opts['rev'],
update=not opts['noupdate'])
@@ -2863,7 +2863,8 @@
('r', 'rev', [],
_('a changeset you would like to have after cloning')),
('', 'pull', None, _('use pull protocol to copy metadata')),
- ('', 'stream', None, _('use streaming protocol (fast over LAN)')),
+ ('', 'uncompressed', None,
+ _('use uncompressed transfer (fast over LAN)')),
('e', 'ssh', '', _('specify ssh command to use')),
('', 'remotecmd', '',
_('specify hg command to run on the remote side'))],