# HG changeset patch # User Matt Mackall # Date 2014-03-06 23:26:49 # Node ID 19e9478c1a2245b6b5b4b2882efee5261d7df963 # Parent 4f68acdb22ff89f5a1990aaed4321c4931109c2a status: improve explanation of ' ' status a) it shows for states other than 'A' b) it only shows with --copies diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5289,7 +5289,7 @@ def status(ui, repo, *pats, **opts): ! = missing (deleted by non-hg command, but still tracked) ? = not tracked I = ignored - = origin of the previous file listed as A (added) + = origin of the previous file (with --copies) .. container:: verbose diff --git a/tests/test-help.t b/tests/test-help.t --- a/tests/test-help.t +++ b/tests/test-help.t @@ -563,7 +563,7 @@ Test command without options ! = missing (deleted by non-hg command, but still tracked) ? = not tracked I = ignored - = origin of the previous file listed as A (added) + = origin of the previous file (with --copies) Returns 0 on success.