[PATCH] Add the merge test Linus called "test script from hell".
[git/gitweb.git] / Documentation / git-diff-tree.txt
blobff7f25f3f4b94c246e94872746378636c3d73922
1 git-diff-tree(1)
2 ================
3 v0.1, May 2005
5 NAME
6 ----
7 git-diff-tree - Compares the content and mode of blobs found via two tree objects
10 SYNOPSIS
11 --------
12 'git-diff-tree' [-p] [-r] [-z] [--stdin] [-m] [-s] [-v] <tree-ish> <tree-ish> [<pattern>]\*
14 DESCRIPTION
15 -----------
16 Compares the content and mode of the blobs found via two tree objects.
18 Note that "git-diff-tree" can use the tree encapsulated in a commit object.
20 OPTIONS
21 -------
22 <tree-ish>::
23         The id of a tree object.
25 <pattern>::
26         If provided, the results are limited to a subset of files
27         matching one of these prefix strings.
28         ie file matches `/^<pattern1>|<pattern2>|.../`
29         Note that pattern does not provide any wildcard or regexp
30         features.
32 -p::
33         generate patch (see section on generating patches).  For
34         git-diff-tree, this flag implies '-r' as well.
36 -r::
37         recurse
39 -z::
40         \0 line termination on output
42 --stdin::
43         When '--stdin' is specified, the command does not take
44         <tree-ish> arguments from the command line.  Instead, it
45         reads either one <commit> or a pair of <tree-ish>
46         separated with a single space from its standard input.
48 When a single commit is given on one line of such input, it compares
49 the commit with its parents.  The following flags further affects its
50 behaviour.  This does not apply to the case where two <tree-ish>
51 separated with a single space are given.
53 -m::
54         By default, "git-diff-tree --stdin" does not show
55         differences for merge commits.  With this flag, it shows
56         differences to that commit from all of its parents.
58 -s::
59         By default, "git-diff-tree --stdin" shows differences,
60         either in machine-readable form (without '-p') or in patch
61         form (with '-p').  This output can be supressed.  It is
62         only useful with '-v' flag.
64 -v::
65         This flag causes "git-diff-tree --stdin" to also show
66         the commit message before the differences.
69 Limiting Output
70 ---------------
71 If you're only interested in differences in a subset of files, for
72 example some architecture-specific files, you might do:
74         git-diff-tree -r <tree-ish> <tree-ish> arch/ia64 include/asm-ia64
76 and it will only show you what changed in those two directories.
78 Or if you are searching for what changed in just `kernel/sched.c`, just do
80         git-diff-tree -r <tree-ish> <tree-ish> kernel/sched.c
82 and it will ignore all differences to other files.
84 The pattern is always the prefix, and is matched exactly.  There are no
85 wildcards.  Even stricter, it has to match complete path comonent.
86 I.e. "foo" does not pick up `foobar.h`.  "foo" does match `foo/bar.h`
87 so it can be used to name subdirectories.
89 An example of normal usage is:
91   torvalds@ppc970:~/git> git-diff-tree 5319e4......
92   *100664->100664 blob    ac348b.......->a01513.......      git-fsck-cache.c
94 which tells you that the last commit changed just one file (it's from
95 this one:
97   commit 3c6f7ca19ad4043e9e72fa94106f352897e651a8
98   tree 5319e4d609cdd282069cc4dce33c1db559539b03
99   parent b4e628ea30d5ab3606119d2ea5caeab141d38df7
100   author Linus Torvalds <torvalds@ppc970.osdl.org> Sat Apr 9 12:02:30 2005
101   committer Linus Torvalds <torvalds@ppc970.osdl.org> Sat Apr 9 12:02:30 2005
103   Make "git-fsck-cache" print out all the root commits it finds.
105   Once I do the reference tracking, I'll also make it print out all the
106   HEAD commits it finds, which is even more interesting.
108 in case you care).
110 Output format
111 -------------
112 include::diff-format.txt[]
115 Author
116 ------
117 Written by Linus Torvalds <torvalds@osdl.org>
119 Documentation
120 --------------
121 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
125 Part of the link:git.html[git] suite