##// END OF EJS Templates
clone: change name of --stream to --uncompressed....
Vadim Gelfer -
r2620:de82749d default
parent child Browse files
Show More
@@ -970,7 +970,7 b' def clone(ui, source, dest=None, **opts)'
970 ui.setconfig_remoteopts(**opts)
970 ui.setconfig_remoteopts(**opts)
971 hg.clone(ui, ui.expandpath(source), dest,
971 hg.clone(ui, ui.expandpath(source), dest,
972 pull=opts['pull'],
972 pull=opts['pull'],
973 stream=opts['stream'],
973 stream=opts['uncompressed'],
974 rev=opts['rev'],
974 rev=opts['rev'],
975 update=not opts['noupdate'])
975 update=not opts['noupdate'])
976
976
@@ -2863,7 +2863,8 b' table = {'
2863 ('r', 'rev', [],
2863 ('r', 'rev', [],
2864 _('a changeset you would like to have after cloning')),
2864 _('a changeset you would like to have after cloning')),
2865 ('', 'pull', None, _('use pull protocol to copy metadata')),
2865 ('', 'pull', None, _('use pull protocol to copy metadata')),
2866 ('', 'stream', None, _('use streaming protocol (fast over LAN)')),
2866 ('', 'uncompressed', None,
2867 _('use uncompressed transfer (fast over LAN)')),
2867 ('e', 'ssh', '', _('specify ssh command to use')),
2868 ('e', 'ssh', '', _('specify ssh command to use')),
2868 ('', 'remotecmd', '',
2869 ('', 'remotecmd', '',
2869 _('specify hg command to run on the remote side'))],
2870 _('specify hg command to run on the remote side'))],
General Comments 0
You need to be logged in to leave comments. Login now