summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cbb504c)
raw | patch | inline | side by side (parent: cbb504c)
author | Anders Melchiorsen <mail@cup.kalibalik.dk> | |
Sun, 27 Jul 2008 11:12:15 +0000 (13:12 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 27 Jul 2008 21:14:00 +0000 (14:14 -0700) |
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>
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>
Documentation/config.txt | patch | blob | history | |
Documentation/git-config.txt | patch | blob | history |
index 798b551514a81549d1d9b31b5a8e079e521ba657..1a13abc92223090c563a19074a29b703758d5286 100644 (file)
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
# Our diff algorithm
[diff]
- external = "/usr/local/bin/gnu-diff -u"
+ external = /usr/local/bin/diff-wrapper
renames = true
[branch "devel"]
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
index 697824cbabdd4bab487b8c943277d3a1d703e59a..28e1861094a1689cdb042df6b1d788620ffdf213 100644 (file)
; Our diff algorithm
[diff]
- external = "/usr/local/bin/gnu-diff -u"
+ external = /usr/local/bin/diff-wrapper
renames = true
; Proxy settings