aboutsummaryrefslogtreecommitdiff
path: root/Documentation/git-diff-tree-helper.txt
blob: 58f27172a9e23bf43f3bae6eb184e72425715b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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