docs(diff): lose incorrect claim about `diff-files --diff-filter=A`
commitd843e319f88f85323ec9865529170181d04b7361
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Fri, 28 Jan 2022 12:02:48 +0000 (28 12:02 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 28 Jan 2022 18:18:17 +0000 (28 10:18 -0800)
tree02524e3a477fbdbb89f34051b6de421fd47a4b43
parent89bece5c8c96f0b962cfc89e63f82d603fd60bed
docs(diff): lose incorrect claim about `diff-files --diff-filter=A`

Originally, before we had `--intent-to-add`, there was no way that `git
diff-files` could see added files: if a file did not exist in the index,
`git diff-files` would not show it because it looks only at worktree
files when there is an index entry at the same path.

We used this example in the documentation of the diff options to explain
that not every `--diff-filter=<option>` has an effect in all scenarios.

Even when we added `--intent-to-add`, the comment was still correct,
because initially we showed such files as modified instead of added.

However, when that bug was fixed in feea6946a5b (diff-files: treat
"i-t-a" files as "not-in-index", 2020-06-20), the comment in the
documentation became incorrect.

Let's just remove it.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/diff-options.txt