diff: document -U without <n> as using default context
The documentation for '-U<n>' implies that the numeric value '<n>' is mandatory. However, the command line parser has historically accepted '-U' without a number. Strictly requiring a number for '-U' would break existing tests (e.g., in 't4013') and likely disrupt user scripts relying on this undocumented behavior. Hence we retain this fallback behavior for backward compatibility, but document it as such. Signed-off-by: Tian Yuchen <cat@malon.dev> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Tian Yuchen committed
Mar 10, 2026 at 17:50 UTC
4f6a803aba9e97650af304b5c266cfbc25b11fcc
2 files changed
+8
-4
Documentation/diff-context-options.adoc
+4
-2
@@ -1,7 +1,9 @@
1
`-U<n>`::
2
`--unified=<n>`::
3
- Generate diffs with _<n>_ lines of context. Defaults to `diff.context`
4
- or 3 if the config option is unset.
3
+ Generate diffs with _<n>_ lines of context. The number of context
4
+ lines defaults to `diff.context` or 3 if the configuration variable
5
+ is unset. (`-U` without `<n>` is silently accepted as a synonym for
6
+ `-p` due to a historical accident).
7
8
`--inter-hunk-context=<n>`::
9
Show the context between diff hunks, up to the specified _<number>_
Documentation/diff-options.adoc
+4
-2
@@ -127,8 +127,10 @@ endif::git-log[]
127
128
`-U<n>`::
129
`--unified=<n>`::
130
- Generate diffs with _<n>_ lines of context instead of
131
- the usual three.
130
+ Generate diffs with _<n>_ lines of context. The number of context
131
+ lines defaults to `diff.context` or 3 if the configuration variable
132
+ is unset. (`-U` without `<n>` is silently accepted as a synonym for
133
+ `-p` due to a historical accident).
134
ifndef::git-format-patch[]
135
Implies `--patch`.
136
endif::git-format-patch[]