# HG changeset patch # User timeless # Date 1450751056 0 # Node ID 9ebc02157bf31d1ea4ecedbbf5dcead2d318e394 # Parent a2e2a8fa5fd1193f83d76c303d7bb81cb2c56685 commands: the first word of each note should be capital or `hg` diff -r a2e2a8fa5fd1 -r 9ebc02157bf3 mercurial/commands.py --- a/mercurial/commands.py Sun Dec 20 16:00:27 2015 -0800 +++ b/mercurial/commands.py Tue Dec 22 02:24:16 2015 +0000 @@ -542,7 +542,7 @@ .. note:: - backout cannot be used to fix either an unwanted or + :hg:`backout` cannot be used to fix either an unwanted or incorrect merge. .. container:: verbose @@ -3523,7 +3523,7 @@ .. note:: - diff may generate unexpected results for merges, as it will + :hg:`diff` may generate unexpected results for merges, as it will default to comparing against the working directory's first parent changeset if no revisions are specified. @@ -3614,7 +3614,7 @@ .. note:: - export may generate unexpected diff output for merge + :hg:`export` may generate unexpected diff output for merge changesets, as it will compare the merge changeset against its first parent only. @@ -4963,14 +4963,14 @@ .. note:: - log -p/--patch may generate unexpected diff output for merge + :hg:`log --patch` may generate unexpected diff output for merge changesets, as it will only compare the merge changeset against its first parent. Also, only files different from BOTH parents will appear in files:. .. note:: - for performance reasons, log FILE may omit duplicate changes + For performance reasons, :hg:`log FILE` may omit duplicate changes made on branches and will not show removals or mode changes. To see all such changes, use the --removed switch. @@ -6228,7 +6228,7 @@ .. note:: - status may appear to disagree with diff if permissions have + :hg:`status` may appear to disagree with diff if permissions have changed or a merge has occurred. The standard diff format does not report permission changes and diff only reports changes relative to one merge parent. diff -r a2e2a8fa5fd1 -r 9ebc02157bf3 tests/test-help.t --- a/tests/test-help.t Sun Dec 20 16:00:27 2015 -0800 +++ b/tests/test-help.t Tue Dec 22 02:24:16 2015 +0000 @@ -498,9 +498,9 @@ Differences between files are shown using the unified diff format. Note: - diff may generate unexpected results for merges, as it will default to - comparing against the working directory's first parent changeset if no - revisions are specified. + "hg diff" may generate unexpected results for merges, as it will + default to comparing against the working directory's first parent + changeset if no revisions are specified. When two revision arguments are given, then changes are shown between those revisions. If only one revision is specified then that revision is @@ -558,10 +558,10 @@ explicitly requested with -u/--unknown or -i/--ignored. Note: - status may appear to disagree with diff if permissions have changed or - a merge has occurred. The standard diff format does not report - permission changes and diff only reports changes relative to one merge - parent. + "hg status" may appear to disagree with diff if permissions have + changed or a merge has occurred. The standard diff format does not + report permission changes and diff only reports changes relative to one + merge parent. If one revision is given, it is used as the base revision. If two revisions are given, the differences between them are shown. The --change