Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/commands.py @ 8031:813a02a4eda2
upper-case command line meta variables
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 08 Apr 2009 20:43:19 +0200 |
parents | e0c434abd530 |
children | 4726a522a182 |
comparison
equal
deleted
inserted
replaced
8030:aba10b5cdd0b | 8031:813a02a4eda2 |
---|---|
3228 ('d', 'date', None, _('list the date (short with -q)')), | 3228 ('d', 'date', None, _('list the date (short with -q)')), |
3229 ] + walkopts, | 3229 ] + walkopts, |
3230 _('[OPTION]... PATTERN [FILE]...')), | 3230 _('[OPTION]... PATTERN [FILE]...')), |
3231 "heads": | 3231 "heads": |
3232 (heads, | 3232 (heads, |
3233 [('r', 'rev', '', _('show only heads which are descendants of rev')), | 3233 [('r', 'rev', '', _('show only heads which are descendants of REV')), |
3234 ('a', 'active', False, | 3234 ('a', 'active', False, |
3235 _('show only the active heads from open branches')), | 3235 _('show only the active heads from open branches')), |
3236 ] + templateopts, | 3236 ] + templateopts, |
3237 _('[-r REV] [REV]...')), | 3237 _('[-r REV] [REV]...')), |
3238 "help": (help_, [], _('[TOPIC]')), | 3238 "help": (help_, [], _('[TOPIC]')), |
3274 (init, | 3274 (init, |
3275 remoteopts, | 3275 remoteopts, |
3276 _('[-e CMD] [--remotecmd CMD] [DEST]')), | 3276 _('[-e CMD] [--remotecmd CMD] [DEST]')), |
3277 "locate": | 3277 "locate": |
3278 (locate, | 3278 (locate, |
3279 [('r', 'rev', '', _('search the repository as it stood at rev')), | 3279 [('r', 'rev', '', _('search the repository as it stood at REV')), |
3280 ('0', 'print0', None, | 3280 ('0', 'print0', None, |
3281 _('end filenames with NUL, for use with xargs')), | 3281 _('end filenames with NUL, for use with xargs')), |
3282 ('f', 'fullpath', None, | 3282 ('f', 'fullpath', None, |
3283 _('print complete paths from the filesystem root')), | 3283 _('print complete paths from the filesystem root')), |
3284 ] + walkopts, | 3284 ] + walkopts, |