2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
12 static const char diff_files_usage
[] =
13 "git diff-files [-q] [-0/-1/2/3 |-c|--cc] [<common diff options>] [<path>...]"
14 COMMON_DIFF_OPTIONS_HELP
;
16 int cmd_diff_files(int argc
, const char **argv
, const char *prefix
)
22 init_revisions(&rev
, prefix
);
23 git_config(git_diff_basic_config
, NULL
); /* no "diff" UI options */
26 argc
= setup_revisions(argc
, argv
, &rev
, NULL
);
27 while (1 < argc
&& argv
[1][0] == '-') {
28 if (!strcmp(argv
[1], "--base"))
30 else if (!strcmp(argv
[1], "--ours"))
32 else if (!strcmp(argv
[1], "--theirs"))
34 else if (!strcmp(argv
[1], "-q"))
35 options
|= DIFF_SILENT_ON_REMOVED
;
37 usage(diff_files_usage
);
40 if (!rev
.diffopt
.output_format
)
41 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
44 * Make sure there are NO revision (i.e. pending object) parameter,
45 * rev.max_count is reasonable (0 <= n <= 3), and
46 * there is no other revision filtering parameters.
49 rev
.min_age
!= -1 || rev
.max_age
!= -1 ||
51 usage(diff_files_usage
);
54 * "diff-files --base -p" should not combine merges because it
55 * was not asked to. "diff-files -c -p" should not densify
56 * (the user should ask with "diff-files --cc" explicitly).
58 if (rev
.max_count
== -1 && !rev
.combine_merges
&&
59 (rev
.diffopt
.output_format
& DIFF_FORMAT_PATCH
))
60 rev
.combine_merges
= rev
.dense_combined_merges
= 1;
62 if (read_cache_preload(rev
.diffopt
.paths
) < 0) {
63 perror("read_cache_preload");
66 result
= run_diff_files(&rev
, options
);
67 return diff_result_code(&rev
.diffopt
, result
);