equal
deleted
inserted
replaced
882 ctx = scmutil.revsingle(repo, opts.get(r'rev'), None) |
882 ctx = scmutil.revsingle(repo, opts.get(r'rev'), None) |
883 if ui.verbose: |
883 if ui.verbose: |
884 tree = fileset.parse(expr) |
884 tree = fileset.parse(expr) |
885 ui.note(fileset.prettyformat(tree), "\n") |
885 ui.note(fileset.prettyformat(tree), "\n") |
886 |
886 |
887 for f in ctx.getfileset(expr): |
887 for f in sorted(ctx.getfileset(expr)): |
888 ui.write("%s\n" % f) |
888 ui.write("%s\n" % f) |
889 |
889 |
890 @command('debugformat', |
890 @command('debugformat', |
891 [] + cmdutil.formatteropts, |
891 [] + cmdutil.formatteropts, |
892 _('')) |
892 _('')) |