diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-13 18:40:54 -0700 |
---|---|---|
committer | Petr Baudis <xpasky@machine.sinus.cz> | 2005-05-15 02:05:03 +0200 |
commit | 99665af5c0be0fe4319b39183e84917993153576 (patch) | |
tree | df3d05b66e546714a1411c0f131a90ffcd367cd5 /Documentation/git-diff-helper.txt | |
parent | The test of the basic diff functionality (diff) | |
download | tgif-99665af5c0be0fe4319b39183e84917993153576.tar.xz |
[PATCH 2/3] Rename git-diff-tree-helper to git-diff-helper.
It used to be that diff-tree needed helper support to parse its
raw output to generate diffs, but these days git-diff-* family
produces the same output and the helper is not tied to diff-tree
anymore. Drop "tree" from its name.
This commit is done separately to record just the rename and no
file content changes. The changes in the renamed files are recorded
in the next commit.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Bundled with the changes in the unrenamed files.
Signed-off-by: Petr Baudis <pasky@ucw.cz>
Diffstat (limited to 'Documentation/git-diff-helper.txt')
-rw-r--r-- | Documentation/git-diff-helper.txt | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Documentation/git-diff-helper.txt b/Documentation/git-diff-helper.txt new file mode 100644 index 0000000000..58f27172a9 --- /dev/null +++ b/Documentation/git-diff-helper.txt @@ -0,0 +1,49 @@ +git-diff-tree-helper(1) +======================= +v0.1, May 2005 + +NAME +---- +git-diff-tree-helper - Generates patch format output for git-diff-* + + +SYNOPSIS +-------- +'git-diff-tree-helper' [-z] [-R] + +DESCRIPTION +----------- +Reads output from "git-diff-cache", "git-diff-tree" and "git-diff-files" and +generates patch format output. + +OPTIONS +------- +-z:: + \0 line termination on input + +-R:: + Output diff in reverse. This is useful for displaying output from + "git-diff-cache" which always compares tree with cache or working + file. E.g. + + git-diff-cache <tree> | git-diff-tree-helper -R file.c ++ +would show a diff to bring the working file back to what is in the <tree>. + +See Also +-------- +The section on generating patches in link:git-diff-cache.html[git-diff-cache] + + +Author +------ +Written by Linus Torvalds <torvalds@osdl.org> + +Documentation +-------------- +Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. + +GIT +--- +Part of the link:git.html[git] suite + |