diff -r 11842aad3195 -r d7a508a75d72 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Sat Nov 07 16:36:19 2020 -0800 +++ b/mercurial/debugcommands.py Sun Nov 08 16:23:35 2020 -0500 @@ -78,6 +78,7 @@ sshpeer, sslutil, streamclone, + strip, tags as tagsmod, templater, treediscovery, @@ -105,7 +106,9 @@ release = lockmod.release -command = registrar.command() +table = {} +table.update(strip.command._table) +command = registrar.command(table) @command(b'debugancestor', [], _(b'[INDEX] REV1 REV2'), optionalrepo=True)