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