mercurial/debugcommands.py
changeset 45107 4a28f5e8408e
parent 45100 d50d922ca02b
child 45149 87047efbc6a6
--- a/mercurial/debugcommands.py	Tue Apr 14 16:43:54 2020 +0530
+++ b/mercurial/debugcommands.py	Tue Apr 14 17:06:11 2020 +0530
@@ -2651,6 +2651,13 @@
             ui.write(_(b"%s not renamed\n") % rel)
 
 
+@command(b'debugrequires|debugrequirements', [], b'')
+def debugrequirements(ui, repo):
+    """ print the current repo requirements """
+    for r in sorted(repo.requirements):
+        ui.write(b"%s\n" % r)
+
+
 @command(
     b'debugrevlog',
     cmdutil.debugrevlogopts + [(b'd', b'dump', False, _(b'dump index data'))],