]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-diff-index.c
xdiff: minor changes to match libxdiff-0.21
[thirdparty/git.git] / builtin-diff-index.c
CommitLineData
e74f8f6a 1#include "cache.h"
f92a4465 2#include "diff.h"
e09ad6e1
JH
3#include "commit.h"
4#include "revision.h"
e8cc9cd9 5#include "builtin.h"
b5af9107 6
4d1f1190 7static const char diff_cache_usage[] =
215a7ad1 8"git-diff-index [-m] [--cached] "
dda2d79a
JH
9"[<common diff options>] <tree-ish> [<path>...]"
10COMMON_DIFF_OPTIONS_HELP;
c5bac17a 11
e8cc9cd9 12int cmd_diff_index(int argc, const char **argv, char **envp)
e74f8f6a 13{
e09ad6e1 14 struct rev_info rev;
e09ad6e1 15 int cached = 0;
6c56c534 16 int i;
e74f8f6a 17
9ce392f4 18 git_config(git_diff_config);
e09ad6e1
JH
19 init_revisions(&rev);
20 rev.abbrev = 0;
21
22 argc = setup_revisions(argc, argv, &rev, NULL);
6c56c534
LT
23 for (i = 1; i < argc; i++) {
24 const char *arg = argv[i];
6c56c534 25
5c21ac0e 26 if (!strcmp(arg, "--cached"))
e09ad6e1
JH
27 cached = 1;
28 else
6b5ee137 29 usage(diff_cache_usage);
e74f8f6a 30 }
e09ad6e1
JH
31 /*
32 * Make sure there is one revision (i.e. pending object),
33 * and there is no revision filtering parameters.
34 */
35 if (!rev.pending_objects || rev.pending_objects->next ||
36 rev.max_count != -1 || rev.min_age != -1 || rev.max_age != -1)
c5bac17a 37 usage(diff_cache_usage);
5c21ac0e 38 return run_diff_index(&rev, cached);
e74f8f6a 39}