changeset 16104 | 5535e66b3016 |
parent 16097 | 8dc573a9c5e5 |
child 16109 | cb756482c1aa |
--- a/mercurial/commands.py Fri Feb 10 13:47:57 2012 -0600 +++ b/mercurial/commands.py Fri Feb 10 13:50:13 2012 +0100 @@ -2154,7 +2154,11 @@ @command('debugrevspec', [], ('REVSPEC')) def debugrevspec(ui, repo, expr): - '''parse and apply a revision specification''' + """parse and apply a revision specification + + Use --verbose to print the parsed tree before and after aliases + expansion. + """ if ui.verbose: tree = revset.parse(expr)[0] ui.note(tree, "\n")