diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-22 07:52:37 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-22 08:00:50 +0100 |
commit | 9ce392f4826558357af2b2c7eb6ad876fdb53a91 (patch) | |
tree | 1fc0cafecbccad13a1252e45d0039fb85026cc65 /diff-tree.c | |
parent | max-count in terms of intersection (diff) | |
download | git-9ce392f4826558357af2b2c7eb6ad876fdb53a91.tar.xz git-9ce392f4826558357af2b2c7eb6ad876fdb53a91.zip |
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-tree.c')
-rw-r--r-- | diff-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c index 09d16ad661..da9c68c16f 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -164,7 +164,7 @@ int main(int argc, const char **argv) unsigned char sha1[2][20]; const char *prefix = setup_git_directory(); - git_config(git_default_config); + git_config(git_diff_config); nr_sha1 = 0; diff_setup(&diff_options); |