hgext/fetch.py
changeset 40293 c303d65d2e34
parent 36607 c6061cadb400
child 41399 5cb8158a61f7
--- a/hgext/fetch.py	Fri Oct 12 17:57:36 2018 +0200
+++ b/hgext/fetch.py	Sat Oct 13 02:17:41 2018 -0700
@@ -41,7 +41,8 @@
     ('', 'force-editor', None, _('edit commit message (DEPRECATED)')),
     ('', 'switch-parent', None, _('switch parents when merging')),
     ] + cmdutil.commitopts + cmdutil.commitopts2 + cmdutil.remoteopts,
-    _('hg fetch [SOURCE]'))
+    _('hg fetch [SOURCE]'),
+    helpcategory=command.CATEGORY_REMOTE_REPO_MANAGEMENT)
 def fetch(ui, repo, source='default', **opts):
     '''pull changes from a remote repository, merge new changes if needed.