##// END OF EJS Templates
debugrevspec: mention --verbose to print the parsed tree
Patrick Mezard -
r16104:5535e66b default
parent child Browse files
Show More
@@ -2154,7 +2154,11 b' def debugrevlog(ui, repo, file_ = None, '
2154
2154
2155 @command('debugrevspec', [], ('REVSPEC'))
2155 @command('debugrevspec', [], ('REVSPEC'))
2156 def debugrevspec(ui, repo, expr):
2156 def debugrevspec(ui, repo, expr):
2157 '''parse and apply a revision specification'''
2157 """parse and apply a revision specification
2158
2159 Use --verbose to print the parsed tree before and after aliases
2160 expansion.
2161 """
2158 if ui.verbose:
2162 if ui.verbose:
2159 tree = revset.parse(expr)[0]
2163 tree = revset.parse(expr)[0]
2160 ui.note(tree, "\n")
2164 ui.note(tree, "\n")
General Comments 0
You need to be logged in to leave comments. Login now