Re: [PATCH] Correct documentation wording for diff options -S and --pickaxe-all
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:45:16
Heikki Orsila [off-list ref] writes:
quoted hunk
Signed-off-by: Heikki Orsila <redacted> --- Documentation/diff-options.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)diff --git a/Documentation/diff-options.txt b/Documentation/diff-options.txt index 1759386..062a8ae 100644 --- a/Documentation/diff-options.txt +++ b/Documentation/diff-options.txt@@ -160,12 +160,12 @@ endif::git-format-patch[] number. -S<string>:: - Look for differences that contain the change in <string>. + Look for differences that contain <string> in the change. --pickaxe-all:: When -S finds a change, show all the changes in that - changeset, not just the files that contain the change - in <string>. + changeset, not just the files that contain <string> + in the change.
Thanks, but if we are doing this, we should reword it to something less
misleading. The pickaxe search does not look for changes that contains
string in the sense people might expect (e.g. "diff -u0 | grep string").
The machinery looks at the old and new copy, and considers it a match if
they have different numbers of "string" in them.
So perhaps something like this
-S<string>::
Look for differences that changes the number of <string> in the
file.
--pickaxe-all::
When -S finds a change, show all the changes in that changeset,
not just the files for which the number of <string> in them
changes.
but I am bad at writing, so I'll ask others to come up with a better
wording.