git-format-patch.txt: document --no-notes option

Internally, git-format-patch uses the `handle_revision_opt` parser. The parser handles the `--no-notes` option to negate an earlier `--notes` option, but it isn't documented. Document this option so that users are aware of it. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Denton Liu committed May 10, 2019 at 14:37 UTC 83d9db7893e479a836b11e141c1717f0d5b829a0
1 file changed +3 -1
Documentation/git-format-patch.txt
+3 -1
@@ -22,7 +22,8 @@ SYNOPSIS
22 [--rfc] [--subject-prefix=Subject-Prefix]
23 [(--reroll-count|-v) <n>]
24 [--to=<email>] [--cc=<email>]
25 - [--[no-]cover-letter] [--quiet] [--notes[=<ref>]]
25 + [--[no-]cover-letter] [--quiet]
26 + [--no-notes | --notes[=<ref>]]
27 [--interdiff=<previous>]
28 [--range-diff=<previous> [--creation-factor=<percent>]]
29 [--progress]
@@ -263,6 +264,7 @@ material (this may change in the future).
264 for details.
265
266 --notes[=<ref>]::
267 +--no-notes::
268 Append the notes (see linkgit:git-notes[1]) for the commit
269 after the three-dash line.
270 +