# HG changeset patch # User Boris Feld # Date 1534238105 -7200 # Node ID 3ff9d2ec6d888b080880cc0a11f3c392762b2b16 # Parent ad88726d69822060a8ea9755d94809196ca3b864 add: add a label for messages about added files Keeping consistency between addremove and add seems a good idea. diff -r ad88726d6982 -r 3ff9d2ec6d88 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Wed Jul 25 17:11:52 2018 +0200 +++ b/mercurial/cmdutil.py Tue Aug 14 11:15:05 2018 +0200 @@ -2031,7 +2031,8 @@ cca(f) names.append(f) if ui.verbose or not exact: - ui.status(_('adding %s\n') % match.rel(f)) + ui.status(_('adding %s\n') % match.rel(f), + label='addremove.added') for subpath in sorted(wctx.substate): sub = wctx.sub(subpath) diff -r ad88726d6982 -r 3ff9d2ec6d88 tests/test-add.t --- a/tests/test-add.t Wed Jul 25 17:11:52 2018 +0200 +++ b/tests/test-add.t Tue Aug 14 11:15:05 2018 +0200 @@ -12,6 +12,9 @@ $ hg forget a $ hg add adding a + $ hg forget a + $ hg add --color debug + [addremove.added ui.status|adding a] $ hg st A a $ mkdir dir