diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-09-29 09:04:14 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-09-29 09:04:15 -0700 |
| commit | 0b493d2986ab2664a35a87db04154c795f74d3fd (patch) | |
| tree | 6cedffded7f4367108e37bdc2c78c57f2668e66a /builtin/diff.c | |
| parent | Merge branch 'jk/fsmonitor-unused-parameter' (diff) | |
| parent | diff --stat: add config option to limit filename width (diff) | |
| download | git-0b493d2986ab2664a35a87db04154c795f74d3fd.tar.gz git-0b493d2986ab2664a35a87db04154c795f74d3fd.zip | |
Merge branch 'ds/stat-name-width-configuration'
"git diff" learned diff.statNameWidth configuration variable, to
give the default width for the name part in the "--stat" output.
* ds/stat-name-width-configuration:
diff --stat: add config option to limit filename width
Diffstat (limited to 'builtin/diff.c')
| -rw-r--r-- | builtin/diff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/diff.c b/builtin/diff.c index 0b313549c7..c0f564273a 100644 --- a/builtin/diff.c +++ b/builtin/diff.c @@ -475,6 +475,7 @@ int cmd_diff(int argc, const char **argv, const char *prefix) /* Set up defaults that will apply to both no-index and regular diffs. */ rev.diffopt.stat_width = -1; + rev.diffopt.stat_name_width = -1; rev.diffopt.stat_graph_width = -1; rev.diffopt.flags.allow_external = 1; rev.diffopt.flags.allow_textconv = 1; |
