##// END OF EJS Templates
consistency: use REV instead of REVISION
Thomas Arendsen Hein -
r16991:1aae34f1 default
parent child Browse files
Show More
@@ -164,7 +164,7 b' def sigs(ui, repo):'
164 r = "%5d:%s" % (rev, hgnode.hex(repo.changelog.node(rev)))
164 r = "%5d:%s" % (rev, hgnode.hex(repo.changelog.node(rev)))
165 ui.write("%-30s %s\n" % (keystr(ui, k), r))
165 ui.write("%-30s %s\n" % (keystr(ui, k), r))
166
166
167 @command("sigcheck", [], _('hg sigcheck REVISION'))
167 @command("sigcheck", [], _('hg sigcheck REV'))
168 def check(ui, repo, rev):
168 def check(ui, repo, rev):
169 """verify all the signatures there may be for a particular revision"""
169 """verify all the signatures there may be for a particular revision"""
170 mygpg = newgpg(ui)
170 mygpg = newgpg(ui)
@@ -206,7 +206,7 b' def keystr(ui, key):'
206 ('m', 'message', '',
206 ('m', 'message', '',
207 _('commit message'), _('TEXT')),
207 _('commit message'), _('TEXT')),
208 ] + commands.commitopts2,
208 ] + commands.commitopts2,
209 _('hg sign [OPTION]... [REVISION]...'))
209 _('hg sign [OPTION]... [REV]...'))
210 def sign(ui, repo, *revs, **opts):
210 def sign(ui, repo, *revs, **opts):
211 """add a signature for the current or given revision
211 """add a signature for the current or given revision
212
212
@@ -535,7 +535,7 b' def transplant(ui, repo, *revs, **opts):'
535 transplanted, otherwise you will be prompted to select the
535 transplanted, otherwise you will be prompted to select the
536 changesets you want.
536 changesets you want.
537
537
538 :hg:`transplant --branch REVISION --all` will transplant the
538 :hg:`transplant --branch REV --all` will transplant the
539 selected branch (up to the named revision) onto your current
539 selected branch (up to the named revision) onto your current
540 working directory.
540 working directory.
541
541
@@ -2608,7 +2608,7 b' def forget(ui, repo, *pats, **opts):'
2608 ('U', 'currentuser', False,
2608 ('U', 'currentuser', False,
2609 _('record the current user as committer'), _('DATE'))]
2609 _('record the current user as committer'), _('DATE'))]
2610 + commitopts2 + mergetoolopts + dryrunopts,
2610 + commitopts2 + mergetoolopts + dryrunopts,
2611 _('[OPTION]... REVISION...'))
2611 _('[OPTION]... REV...'))
2612 def graft(ui, repo, *revs, **opts):
2612 def graft(ui, repo, *revs, **opts):
2613 '''copy changes from other branches onto the current branch
2613 '''copy changes from other branches onto the current branch
2614
2614
General Comments 0
You need to be logged in to leave comments. Login now