mercurial/commands.py
changeset 1048 7fbb440b2e63
parent 1047 a0538ea1ac50
child 1049 160a68cd393f
--- a/mercurial/commands.py	Fri Aug 26 08:26:21 2005 +0200
+++ b/mercurial/commands.py	Fri Aug 26 08:37:41 2005 +0200
@@ -1523,6 +1523,7 @@
     ('', 'time', None, 'time how long the command takes'),
     ('', 'profile', None, 'profile'),
     ('', 'version', None, 'output version information and exit'),
+    ('h', 'help', None, 'display help and exit'),
 ]
 
 norepo = "clone init version help debugconfig debugdata" + \
@@ -1632,7 +1633,10 @@
 
     try:
         try:
-            if options['version']:
+            if options['help']:
+                help_(u, cmd)
+                sys.exit(0)
+            elif options['version']:
                 show_version(u)
                 sys.exit(0)
             elif not cmd: