2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
11 #include "submodule.h"
13 static const char diff_files_usage[] =
14 "git diff-files [-q] [-0/-1/2/3 |-c|--cc] [<common diff options>] [<path>...]"
15 COMMON_DIFF_OPTIONS_HELP;
17 int cmd_diff_files(int argc, const char **argv, const char *prefix)
23 init_revisions(&rev, prefix);
25 git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
28 argc = setup_revisions(argc, argv, &rev, NULL);
29 while (1 < argc && argv[1][0] == '-') {
30 if (!strcmp(argv[1], "--base"))
32 else if (!strcmp(argv[1], "--ours"))
34 else if (!strcmp(argv[1], "--theirs"))
36 else if (!strcmp(argv[1], "-q"))
37 options |= DIFF_SILENT_ON_REMOVED;
39 usage(diff_files_usage);
42 if (!rev.diffopt.output_format)
43 rev.diffopt.output_format = DIFF_FORMAT_RAW;
46 * Make sure there are NO revision (i.e. pending object) parameter,
47 * rev.max_count is reasonable (0 <= n <= 3), and
48 * there is no other revision filtering parameters.
51 rev.min_age != -1 || rev.max_age != -1 ||
53 usage(diff_files_usage);
56 * "diff-files --base -p" should not combine merges because it
57 * was not asked to. "diff-files -c -p" should not densify
58 * (the user should ask with "diff-files --cc" explicitly).
60 if (rev.max_count == -1 && !rev.combine_merges &&
61 (rev.diffopt.output_format & DIFF_FORMAT_PATCH))
62 rev.combine_merges = rev.dense_combined_merges = 1;
64 if (read_cache_preload(&rev.diffopt.pathspec) < 0) {
65 perror("read_cache_preload");
68 result = run_diff_files(&rev, options);
69 return diff_result_code(&rev.diffopt, result);