##// END OF EJS Templates
expand "rev" to "revision" in help texts
Martin Geisler -
r8028:3aaca590 default
parent child Browse files
Show More
@@ -35,7 +35,7 b' def children(ui, repo, file_=None, **opt'
35 cmdtable = {
35 cmdtable = {
36 "children":
36 "children":
37 (children,
37 (children,
38 [('r', 'rev', '', _('show children of the specified rev')),
38 [('r', 'rev', '', _('show children of the specified revision')),
39 ] + templateopts,
39 ] + templateopts,
40 _('hg children [-r REV] [FILE]')),
40 _('hg children [-r REV] [FILE]')),
41 }
41 }
@@ -150,7 +150,7 b' cmdtable = {'
150 "churn":
150 "churn":
151 (churn,
151 (churn,
152 [('r', 'rev', [], _('count rate for the specified revision or range')),
152 [('r', 'rev', [], _('count rate for the specified revision or range')),
153 ('d', 'date', '', _('count rate for revs matching date spec')),
153 ('d', 'date', '', _('count rate for revisions matching date spec')),
154 ('t', 'template', '{author|email}', _('template to group changesets')),
154 ('t', 'template', '{author|email}', _('template to group changesets')),
155 ('f', 'dateformat', '',
155 ('f', 'dateformat', '',
156 _('strftime-compatible format for grouping by date')),
156 _('strftime-compatible format for grouping by date')),
@@ -370,7 +370,7 b' def createlog(ui, directory=None, root="'
370 e.revision[-1] == 1 and # 1.1 or 1.1.x.1
370 e.revision[-1] == 1 and # 1.1 or 1.1.x.1
371 len(e.comment) == 1 and
371 len(e.comment) == 1 and
372 file_added_re.match(e.comment[0])):
372 file_added_re.match(e.comment[0])):
373 ui.debug(_('found synthetic rev in %s: %r\n')
373 ui.debug(_('found synthetic revision in %s: %r\n')
374 % (e.rcs, e.comment[0]))
374 % (e.rcs, e.comment[0]))
375 e.synthetic = True
375 e.synthetic = True
376
376
@@ -2178,7 +2178,7 b' def rename(ui, repo, patch, name=None, *'
2178 q.save_dirty()
2178 q.save_dirty()
2179
2179
2180 def restore(ui, repo, rev, **opts):
2180 def restore(ui, repo, rev, **opts):
2181 """restore the queue state saved by a rev"""
2181 """restore the queue state saved by a revision"""
2182 rev = repo.lookup(rev)
2182 rev = repo.lookup(rev)
2183 q = repo.mq
2183 q = repo.mq
2184 q.restore(repo, rev, delete=opts['delete'],
2184 q.restore(repo, rev, delete=opts['delete'],
@@ -3220,7 +3220,7 b' table = {'
3220 _('follow changeset history, or file history across copies and renames')),
3220 _('follow changeset history, or file history across copies and renames')),
3221 ('i', 'ignore-case', None, _('ignore case when matching')),
3221 ('i', 'ignore-case', None, _('ignore case when matching')),
3222 ('l', 'files-with-matches', None,
3222 ('l', 'files-with-matches', None,
3223 _('print only filenames and revs that match')),
3223 _('print only filenames and revisions that match')),
3224 ('n', 'line-number', None, _('print matching line numbers')),
3224 ('n', 'line-number', None, _('print matching line numbers')),
3225 ('r', 'rev', [], _('search in given revision range')),
3225 ('r', 'rev', [], _('search in given revision range')),
3226 ('u', 'user', None, _('list the author (long with -v)')),
3226 ('u', 'user', None, _('list the author (long with -v)')),
@@ -3237,7 +3237,7 b' table = {'
3237 "help": (help_, [], _('[TOPIC]')),
3237 "help": (help_, [], _('[TOPIC]')),
3238 "identify|id":
3238 "identify|id":
3239 (identify,
3239 (identify,
3240 [('r', 'rev', '', _('identify the specified rev')),
3240 [('r', 'rev', '', _('identify the specified revision')),
3241 ('n', 'num', None, _('show local revision number')),
3241 ('n', 'num', None, _('show local revision number')),
3242 ('i', 'id', None, _('show global revision id')),
3242 ('i', 'id', None, _('show global revision id')),
3243 ('b', 'branch', None, _('show branch')),
3243 ('b', 'branch', None, _('show branch')),
@@ -3288,13 +3288,13 b' table = {'
3288 _('follow changeset history, or file history across copies and renames')),
3288 _('follow changeset history, or file history across copies and renames')),
3289 ('', 'follow-first', None,
3289 ('', 'follow-first', None,
3290 _('only follow the first parent of merge changesets')),
3290 _('only follow the first parent of merge changesets')),
3291 ('d', 'date', '', _('show revs matching date spec')),
3291 ('d', 'date', '', _('show revisions matching date spec')),
3292 ('C', 'copies', None, _('show copied files')),
3292 ('C', 'copies', None, _('show copied files')),
3293 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3293 ('k', 'keyword', [], _('do case-insensitive search for a keyword')),
3294 ('r', 'rev', [], _('show the specified revision or range')),
3294 ('r', 'rev', [], _('show the specified revision or range')),
3295 ('', 'removed', None, _('include revs where files were removed')),
3295 ('', 'removed', None, _('include revisions where files were removed')),
3296 ('m', 'only-merges', None, _('show only merges')),
3296 ('m', 'only-merges', None, _('show only merges')),
3297 ('u', 'user', [], _('revs committed by user')),
3297 ('u', 'user', [], _('revisions committed by user')),
3298 ('b', 'only-branch', [],
3298 ('b', 'only-branch', [],
3299 _('show only changesets within the given named branch')),
3299 _('show only changesets within the given named branch')),
3300 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
3300 ('P', 'prune', [], _('do not display revision or any of its ancestors')),
@@ -3321,7 +3321,7 b' table = {'
3321 _('[-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3321 _('[-M] [-p] [-n] [-f] [-r REV]... [DEST]')),
3322 "^parents":
3322 "^parents":
3323 (parents,
3323 (parents,
3324 [('r', 'rev', '', _('show parents from the specified rev')),
3324 [('r', 'rev', '', _('show parents from the specified revision')),
3325 ] + templateopts,
3325 ] + templateopts,
3326 _('hg parents [-r REV] [FILE]')),
3326 _('hg parents [-r REV] [FILE]')),
3327 "paths": (paths, [], _('[NAME]')),
3327 "paths": (paths, [], _('[NAME]')),
@@ -43,7 +43,7 b' list of commands:'
43 qpush push the next patch onto the stack
43 qpush push the next patch onto the stack
44 qrefresh update the current patch
44 qrefresh update the current patch
45 qrename rename a patch
45 qrename rename a patch
46 qrestore restore the queue state saved by a rev
46 qrestore restore the queue state saved by a revision
47 qsave save current queue state
47 qsave save current queue state
48 qselect set or print guarded patches to push
48 qselect set or print guarded patches to push
49 qseries print the entire series file
49 qseries print the entire series file
General Comments 0
You need to be logged in to leave comments. Login now