[PATCH] fix show_date() for positive timezones
[git/dscho.git] / Documentation / git-diff-helper.txt
blobe930f973230c52e0fa47ad0842658294ef81cf6f
1 git-diff-helper(1)
2 =======================
3 v0.1, May 2005
5 NAME
6 ----
7 git-diff-helper - Generates patch format output for git-diff-*
10 SYNOPSIS
11 --------
12 'git-diff-helper' [-z] [-R] [-r]
14 DESCRIPTION
15 -----------
16 Reads output from "git-diff-cache", "git-diff-tree" and "git-diff-files" and
17 generates patch format output.
19 OPTIONS
20 -------
21 -z::
22         \0 line termination on input
24 -R::
25         Output diff in reverse.  This is useful for displaying output from
26         "git-diff-cache" which always compares tree with cache or working
27         file.  E.g.
29                 git-diff-cache <tree> | git-diff-helper -R file.c
31         would show a diff to bring the working file back to what
32         is in the <tree>.
34 -r::
35         Detect renames.
38 See Also
39 --------
40 The section on generating patches in link:git-diff-cache.html[git-diff-cache]
43 Author
44 ------
45 Written by Junio C Hamano <junkio@cox.net>
48 Documentation
49 --------------
50 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
52 GIT
53 ---
54 Part of the link:git.html[git] suite