Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable thgimport: remove --repo command line option

--repo should be the implied default. --mq is for the patch queue, and we could
add options for --no-commit and --shelve

Changeset 9e08d759df26

Parent 1704871d1eed

by Steve Borho

Changes to 2 files · Browse files at 9e08d759df26 Showing diff from parent 1704871d1eed Diff from another changeset...

 
977
978
979
980
981
 
982
983
984
 
977
978
979
 
 
980
981
982
983
@@ -977,8 +977,7 @@
  "^guess": (guess, [], _('thg guess')),   "^hgignore|ignore|filter": (hgignore, [], _('thg hgignore [FILE]')),   "import": (thgimport, - [('', 'repo', False, _('import to the repository')), - ('', 'mq', False, _('import to the patch queue (MQ)'))], + [('', 'mq', False, _('import to the patch queue (MQ)'))],   _('thg import [OPTION] [SOURCE]...')),   "^init": (init, [], _('thg init [DEST]')),   "^email":
 
22
23
24
25
 
26
27
28
 
22
23
24
 
25
26
27
28
@@ -22,7 +22,7 @@
 _FILE_FILTER = "%s;;%s" % (_("Patch files (*.diff *.patch)"),   _("All files (*)"))   -# TODO: handle --repo and --mq options from command line or MQ widget +# TODO: handle --mq options from command line or MQ widget    class ImportDialog(QDialog):   """Dialog to import patches"""