Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

run: add command option of 'clone'

Most options are not supported in dialog now.

Changeset cdce3f593753

Parent 518ef4cd6ed2

by Yuki KODAMA

Changes to one file · Browse files at cdce3f593753 Showing diff from parent 518ef4cd6ed2 Diff from another changeset...

 
527
528
529
530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
532
533
534
535
 
536
537
538
 
527
528
529
 
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
 
548
549
550
551
@@ -527,12 +527,25 @@
 ]    table = { - "^clone": (clone, [], _('thg clone SOURCE [DEST]')), + "^clone": + (clone, + [('U', 'noupdate', None, + _('the clone will include an empty working copy ' + '(only a repository)')), + ('u', 'updaterev', '', + _('revision, tag or branch to check out')), + ('r', 'rev', [], _('include the specified changeset')), + ('b', 'branch', [], + _('clone only the specified branch')), + ('', 'pull', None, _('use pull protocol to copy metadata')), + ('', 'uncompressed', None, + _('use uncompressed transfer (fast over LAN)')),], + _('thg clone [OPTION]... SOURCE [DEST]')),   "^update|checkout|co":   (update,   [('C', 'clean', None, _('discard uncommitted changes (no backup)')),   ('r', 'rev', '', _('revision to update')),], - _('hgqt update [-C] [[-r] REV')), + _('thg update [-C] [[-r] REV')),  }    if os.name == 'nt':