mercurial/commands.py
changeset 42244 0f01394457a0
parent 42202 8d14d91584f1
child 42261 96bc1ef4a302
--- 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')),