7 static const char diff_cache_usage[] =
8 "git-diff-index [-m] [--cached] "
9 "[<common diff options>] <tree-ish> [<path>...]"
10 COMMON_DIFF_OPTIONS_HELP;
12 int cmd_diff_index(int argc, const char **argv, const char *prefix)
19 init_revisions(&rev, prefix);
20 git_config(git_diff_basic_config); /* no "diff" UI options */
23 argc = setup_revisions(argc, argv, &rev, NULL);
24 for (i = 1; i < argc; i++) {
25 const char *arg = argv[i];
27 if (!strcmp(arg, "--cached"))
30 usage(diff_cache_usage);
32 if (!rev.diffopt.output_format)
33 rev.diffopt.output_format = DIFF_FORMAT_RAW;
36 * Make sure there is one revision (i.e. pending object),
37 * and there is no revision filtering parameters.
39 if (rev.pending.nr != 1 ||
40 rev.max_count != -1 || rev.min_age != -1 || rev.max_age != -1)
41 usage(diff_cache_usage);
42 if (read_cache() < 0) {
46 result = run_diff_index(&rev, cached);
47 return diff_result_code(&rev.diffopt, result);