hgext/fetch.py
changeset 5147 c80af96943aa
parent 4917 126f527b3ba3
child 5798 86f5d8f608b7
--- a/hgext/fetch.py	Tue Aug 07 15:57:23 2007 +0200
+++ b/hgext/fetch.py	Wed Aug 08 12:27:20 2007 +0200
@@ -86,13 +86,8 @@
 cmdtable = {
     'fetch':
         (fetch,
-        [('e', 'ssh', '', _('specify ssh command to use')),
-         ('m', 'message', '', _('use <text> as commit message')),
-         ('l', 'logfile', '', _('read the commit message from <file>')),
-         ('d', 'date', '', _('record datecode as commit date')),
-         ('u', 'user', '', _('record user as commiter')),
-         ('r', 'rev', [], _('a specific revision you would like to pull')),
+        [('r', 'rev', [], _('a specific revision you would like to pull')),
          ('f', 'force-editor', None, _('edit commit message')),
-         ('', 'remotecmd', '', _('hg command to run on the remote side'))],
+        ] + commands.commitopts + commands.commitopts2 + commands.remoteopts,
         _('hg fetch [SOURCE]')),
 }