diff options
author | Marc Branchaud <marcnarc@xiplink.com> | 2017-05-08 18:03:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-09 05:24:35 +0200 |
commit | 37590ce3c535f92e28da83893f843cc0099873bf (patch) | |
tree | ee64e6f2727e82fc55543c6fc388d23d70427ab8 /builtin/diff-tree.c | |
parent | diff: make the indent heuristic part of diff's basic configuration (diff) | |
download | git-37590ce3c535f92e28da83893f843cc0099873bf.tar.xz git-37590ce3c535f92e28da83893f843cc0099873bf.zip |
diff: have the diff-* builtins configure diff before initializing revisions
This matches how the diff Porcelain works. It makes the plumbing commands
respect diff's configuration options, such as indentHeuristic, because
init_revisions() calls diff_setup() which fills in the diff_options struct.
Signed-off-by: Marc Branchaud <marcnarc@xiplink.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/diff-tree.c')
-rw-r--r-- | builtin/diff-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/diff-tree.c b/builtin/diff-tree.c index 326f88b657..36a3a19761 100644 --- a/builtin/diff-tree.c +++ b/builtin/diff-tree.c @@ -105,9 +105,9 @@ int cmd_diff_tree(int argc, const char **argv, const char *prefix) struct setup_revision_opt s_r_opt; int read_stdin = 0; + git_config(git_diff_basic_config, NULL); /* no "diff" UI options */ init_revisions(opt, prefix); gitmodules_config(); - git_config(git_diff_basic_config, NULL); /* no "diff" UI options */ opt->abbrev = 0; opt->diff = 1; opt->disable_stdin = 1; |