diff options
author | Anders Melchiorsen <mail@cup.kalibalik.dk> | 2008-07-27 13:12:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-27 14:14:00 -0700 |
commit | 6bb9e51b8ef2f397f9f44cfaeaa120ca0cc741e6 (patch) | |
tree | 9bcd813a927c04d550c8e31ac2350e5ee5ed4aca /Documentation/config.txt | |
parent | bash completion: Add long options for 'git describe' (diff) | |
download | tgif-6bb9e51b8ef2f397f9f44cfaeaa120ca0cc741e6.tar.xz |
Documentation: fix diff.external example
The diff.external examples pass a flag to gnu-diff, but GNU diff
does not follow the GIT_EXTERNAL_DIFF interface.
Signed-off-by: Anders Melchiorsen <mail@cup.kalibalik.dk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 798b551514..1a13abc922 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -92,7 +92,7 @@ Example # Our diff algorithm [diff] - external = "/usr/local/bin/gnu-diff -u" + external = /usr/local/bin/diff-wrapper renames = true [branch "devel"] @@ -563,9 +563,11 @@ diff.autorefreshindex:: diff.external:: If this config variable is set, diff generation is not performed using the internal diff machinery, but using the - given command. Note: if you want to use an external diff - program only on a subset of your files, you might want to - use linkgit:gitattributes[5] instead. + given command. Can be overridden with the `GIT_EXTERNAL_DIFF' + environment variable. The command is called with parameters + as described under "git Diffs" in linkgit:git[1]. Note: if + you want to use an external diff program only on a subset of + your files, you might want to use linkgit:gitattributes[5] instead. diff.renameLimit:: The number of files to consider when performing the copy/rename |