diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-21 22:52:37 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-21 23:00:50 -0800 |
commit | 9ce392f4826558357af2b2c7eb6ad876fdb53a91 (patch) | |
tree | 1fc0cafecbccad13a1252e45d0039fb85026cc65 /diff-index.c | |
parent | 07f92477227e2a1770dfbb6318caedc4f091f6c1 (diff) | |
download | git-9ce392f4826558357af2b2c7eb6ad876fdb53a91.tar.gz |
Move diff.renamelimit out of default configuration.
Otherwise we would end up linking all the unneeded stuff into git-daemon
only to link with git_default_config.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff-index.c')
-rw-r--r-- | diff-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-index.c b/diff-index.c index c9a9f4c74d..0054883a5e 100644 --- a/diff-index.c +++ b/diff-index.c @@ -180,7 +180,7 @@ int main(int argc, const char **argv) int allow_options = 1; int i; - git_config(git_default_config); + git_config(git_diff_config); diff_setup(&diff_options); for (i = 1; i < argc; i++) { const char *arg = argv[i]; |