author | Tim Henigan <tim.henigan@gmail.com> | |
Fri, 24 Feb 2012 19:48:57 +0000 (14:48 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 27 Feb 2012 20:37:10 +0000 (12:37 -0800) | ||
commit | 1252bbe1c685450ec76ac750e8b0c2e0b762f93f | |
tree | b8d331f99536212124fe080abc9a0ce1a7907e1b | tree | snapshot |
parent | bd444cadb53ce9030fe79f2cdb1570e1a49d4877 | commit | diff |
contrib: add git-diffall script
The 'git difftool' allows the user to view diffs using an external tool.
It runs a separate instance of the tool for each file in the diff. This
makes it tedious to review changes spanning multiple files.
The 'git-diffall' script instead prepares temporary directories with the
files to be compared and launches a single instance of the external diff
tool to view them (i.e. a directory diff).
The 'diff.tool' or 'merge.tool' configuration variable is used to specify
which external tool is used.
Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
The 'git difftool' allows the user to view diffs using an external tool.
It runs a separate instance of the tool for each file in the diff. This
makes it tedious to review changes spanning multiple files.
The 'git-diffall' script instead prepares temporary directories with the
files to be compared and launches a single instance of the external diff
tool to view them (i.e. a directory diff).
The 'diff.tool' or 'merge.tool' configuration variable is used to specify
which external tool is used.
Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/diffall/README | [new file with mode: 0644] | blob |
contrib/diffall/git-diffall | [new file with mode: 0755] | blob |