8 static struct rev_info log_tree_opt
;
10 static int diff_tree_commit_sha1(const unsigned char *sha1
)
12 struct commit
*commit
= lookup_commit_reference(sha1
);
15 return log_tree_commit(&log_tree_opt
, commit
);
18 /* Diff one or more commits. */
19 static int stdin_diff_commit(struct commit
*commit
, char *line
, int len
)
21 unsigned char sha1
[20];
22 if (isspace(line
[40]) && !get_sha1_hex(line
+41, sha1
)) {
23 /* Graft the fake parents locally to the commit */
25 struct commit_list
**pptr
;
27 /* Free the real parent list */
28 free_commit_list(commit
->parents
);
29 commit
->parents
= NULL
;
30 pptr
= &(commit
->parents
);
31 while (line
[pos
] && !get_sha1_hex(line
+ pos
, sha1
)) {
32 struct commit
*parent
= lookup_commit(sha1
);
34 pptr
= &commit_list_insert(parent
, pptr
)->next
;
39 return log_tree_commit(&log_tree_opt
, commit
);
43 static int stdin_diff_trees(struct tree
*tree1
, char *line
, int len
)
45 unsigned char sha1
[20];
47 if (len
!= 82 || !isspace(line
[40]) || get_sha1_hex(line
+ 41, sha1
))
48 return error("Need exactly two trees, separated by a space");
49 tree2
= lookup_tree(sha1
);
50 if (!tree2
|| parse_tree(tree2
))
52 printf("%s %s\n", sha1_to_hex(tree1
->object
.sha1
),
53 sha1_to_hex(tree2
->object
.sha1
));
54 diff_tree_sha1(tree1
->object
.sha1
, tree2
->object
.sha1
,
55 "", &log_tree_opt
.diffopt
);
56 log_tree_diff_flush(&log_tree_opt
);
60 static int diff_tree_stdin(char *line
)
62 int len
= strlen(line
);
63 unsigned char sha1
[20];
66 if (!len
|| line
[len
-1] != '\n')
69 if (get_sha1_hex(line
, sha1
))
71 obj
= parse_object(sha1
);
74 if (obj
->type
== OBJ_COMMIT
)
75 return stdin_diff_commit((struct commit
*)obj
, line
, len
);
76 if (obj
->type
== OBJ_TREE
)
77 return stdin_diff_trees((struct tree
*)obj
, line
, len
);
78 error("Object %s is a %s, not a commit or tree",
79 sha1_to_hex(sha1
), typename(obj
->type
));
83 static const char diff_tree_usage
[] =
84 "git diff-tree [--stdin] [-m] [-c] [--cc] [-s] [-v] [--pretty] [-t] [-r] [--root] "
85 "[<common-diff-options>] <tree-ish> [<tree-ish>] [<path>...]\n"
86 " -r diff recursively\n"
87 " --root include the initial commit as diff against /dev/null\n"
88 COMMON_DIFF_OPTIONS_HELP
;
90 static void diff_tree_tweak_rev(struct rev_info
*rev
, struct setup_revision_opt
*opt
)
92 if (!rev
->diffopt
.output_format
) {
93 if (rev
->dense_combined_merges
)
94 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
96 rev
->diffopt
.output_format
= DIFF_FORMAT_RAW
;
100 int cmd_diff_tree(int argc
, const char **argv
, const char *prefix
)
104 struct object
*tree1
, *tree2
;
105 static struct rev_info
*opt
= &log_tree_opt
;
106 struct setup_revision_opt s_r_opt
;
109 init_revisions(opt
, prefix
);
111 git_config(git_diff_basic_config
, NULL
); /* no "diff" UI options */
114 opt
->disable_stdin
= 1;
115 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
116 s_r_opt
.tweak
= diff_tree_tweak_rev
;
117 argc
= setup_revisions(argc
, argv
, opt
, &s_r_opt
);
120 const char *arg
= *++argv
;
122 if (!strcmp(arg
, "--stdin")) {
126 usage(diff_tree_usage
);
130 * NOTE! We expect "a ^b" to be equal to "a..b", so we
131 * reverse the order of the objects if the second one
132 * is marked UNINTERESTING.
134 nr_sha1
= opt
->pending
.nr
;
138 usage(diff_tree_usage
);
141 tree1
= opt
->pending
.objects
[0].item
;
142 diff_tree_commit_sha1(tree1
->sha1
);
145 tree1
= opt
->pending
.objects
[0].item
;
146 tree2
= opt
->pending
.objects
[1].item
;
147 if (tree2
->flags
& UNINTERESTING
) {
148 struct object
*tmp
= tree2
;
152 diff_tree_sha1(tree1
->sha1
,
155 log_tree_diff_flush(opt
);
163 if (opt
->diffopt
.detect_rename
)
164 opt
->diffopt
.setup
|= (DIFF_SETUP_USE_SIZE_CACHE
|
165 DIFF_SETUP_USE_CACHE
);
166 while (fgets(line
, sizeof(line
), stdin
)) {
167 unsigned char sha1
[20];
169 if (get_sha1_hex(line
, sha1
)) {
174 diff_tree_stdin(line
);
175 if (saved_nrl
< opt
->diffopt
.needed_rename_limit
)
176 saved_nrl
= opt
->diffopt
.needed_rename_limit
;
177 if (opt
->diffopt
.degraded_cc_to_c
)
181 opt
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
182 opt
->diffopt
.needed_rename_limit
= saved_nrl
;
185 return diff_result_code(&opt
->diffopt
, 0);