diff -r 165b1aad43da -r 0f01394457a0 mercurial/commands.py --- a/mercurial/commands.py Fri May 03 14:07:14 2019 +0800 +++ b/mercurial/commands.py Fri May 03 14:11:16 2019 +0800 @@ -1735,6 +1735,10 @@ cmdutil.commitstatus(repo, node, branch, bheads, opts) + if not ui.quiet and ui.configbool('commands', 'commit.post-status'): + status(ui, repo, modified=True, added=True, removed=True, deleted=True, + unknown=True, subrepos=opts.get('subrepos')) + @command('config|showconfig|debugconfig', [('u', 'untrusted', None, _('show untrusted configuration options')), ('e', 'edit', None, _('edit user config')),