Mercurial > hg
changeset 1046:772507daaa17
Sort global options by topic: directories, ui, timing, other
(and changed indentation to match command table)
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 25 Aug 2005 18:35:35 +0200 |
parents | b35d5b86e240 |
children | a0538ea1ac50 |
files | mercurial/commands.py |
diffstat | 1 files changed, 13 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Thu Aug 25 18:25:19 2005 +0200 +++ b/mercurial/commands.py Thu Aug 25 18:35:35 2005 +0200 @@ -1510,19 +1510,20 @@ 'hg update [-b TAG] [-m] [-C] [REV]'), "verify": (verify, [], 'hg verify'), "version": (show_version, [], 'hg version'), - } +} -globalopts = [('v', 'verbose', None, 'verbose mode'), - ('', 'debug', None, 'debug mode'), - ('q', 'quiet', None, 'quiet mode'), - ('', 'profile', None, 'profile'), - ('', 'cwd', '', 'change working directory'), - ('R', 'repository', "", 'repository root directory'), - ('', 'traceback', None, 'print traceback on exception'), - ('y', 'noninteractive', None, 'run non-interactively'), - ('', 'version', None, 'output version information and exit'), - ('', 'time', None, 'time how long the command takes'), - ] +globalopts = [ + ('R', 'repository', "", 'repository root directory'), + ('', 'cwd', '', 'change working directory'), + ('y', 'noninteractive', None, 'run non-interactively'), + ('q', 'quiet', None, 'quiet mode'), + ('v', 'verbose', None, 'verbose mode'), + ('', 'debug', None, 'debug mode'), + ('', 'traceback', None, 'print traceback on exception'), + ('', 'time', None, 'time how long the command takes'), + ('', 'profile', None, 'profile'), + ('', 'version', None, 'output version information and exit'), +] norepo = "clone init version help debugconfig debugdata" + \ " debugindex debugindexdot paths"