aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-13 18:41:36 -0700
committerPetr Baudis <xpasky@machine.sinus.cz>2005-05-15 02:06:05 +0200
commit902b92e00e491a60d55c4b2bce122903b8347f34 (patch)
treec8c77f67ea85ee65a0f055f2cb76e6059eaa0776 /Documentation
parent99665af5c0be0fe4319b39183e84917993153576 (diff)
downloadgit-902b92e00e491a60d55c4b2bce122903b8347f34.tar.gz
[PATCH 3/3] Rename git-diff-tree-helper to git-diff-helper (part 2).
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 follows the "rename only" commit to adjust the contents of the files involved. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Petr Baudis <pasky@ucw.cz>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-diff-helper.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/git-diff-helper.txt b/Documentation/git-diff-helper.txt
index 58f27172a9..f879ed9892 100644
--- a/Documentation/git-diff-helper.txt
+++ b/Documentation/git-diff-helper.txt
@@ -1,15 +1,15 @@
-git-diff-tree-helper(1)
+git-diff-helper(1)
=======================
v0.1, May 2005
NAME
----
-git-diff-tree-helper - Generates patch format output for git-diff-*
+git-diff-helper - Generates patch format output for git-diff-*
SYNOPSIS
--------
-'git-diff-tree-helper' [-z] [-R]
+'git-diff-helper' [-z] [-R]
DESCRIPTION
-----------
@@ -26,8 +26,8 @@ OPTIONS
"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
-+
+ git-diff-cache <tree> | git-diff-helper -R file.c
+
would show a diff to bring the working file back to what is in the <tree>.
See Also