2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
9 static const char *diff_files_usage
=
10 "git-diff-files [-p] [-q] [-r] [-z] [-M] [-C] [-R] [-S<string>] [paths...]";
12 static int diff_output_format
= DIFF_FORMAT_HUMAN
;
13 static int detect_rename
= 0;
14 static int reverse_diff
= 0;
15 static int diff_score_opt
= 0;
16 static const char *pickaxe
= NULL
;
17 static int silent
= 0;
19 static void show_unmerge(const char *path
)
24 static void show_file(int pfx
, struct cache_entry
*ce
)
26 diff_addremove(pfx
, ntohl(ce
->ce_mode
), ce
->sha1
, ce
->name
, NULL
);
29 static void show_modified(int oldmode
, int mode
,
30 const unsigned char *old_sha1
, const unsigned char *sha1
,
33 diff_change(oldmode
, mode
, old_sha1
, sha1
, path
, NULL
);
36 int main(int argc
, const char **argv
)
38 static const unsigned char null_sha1
[20] = { 0, };
39 int entries
= read_cache();
42 while (1 < argc
&& argv
[1][0] == '-') {
43 if (!strcmp(argv
[1], "-p"))
44 diff_output_format
= DIFF_FORMAT_PATCH
;
45 else if (!strcmp(argv
[1], "-q"))
47 else if (!strcmp(argv
[1], "-r"))
49 else if (!strcmp(argv
[1], "-s"))
51 else if (!strcmp(argv
[1], "-z"))
52 diff_output_format
= DIFF_FORMAT_MACHINE
;
53 else if (!strcmp(argv
[1], "-R"))
55 else if (!strcmp(argv
[1], "-S"))
56 pickaxe
= argv
[1] + 2;
57 else if (!strncmp(argv
[1], "-M", 2)) {
58 diff_score_opt
= diff_scoreopt_parse(argv
[1]);
59 detect_rename
= DIFF_DETECT_RENAME
;
61 else if (!strncmp(argv
[1], "-C", 2)) {
62 diff_score_opt
= diff_scoreopt_parse(argv
[1]);
63 detect_rename
= DIFF_DETECT_COPY
;
66 usage(diff_files_usage
);
70 /* At this point, if argc == 1, then we are doing everything.
71 * Otherwise argv[1] .. argv[argc-1] have the explicit paths.
78 diff_setup(reverse_diff
);
80 for (i
= 0; i
< entries
; i
++) {
82 unsigned int oldmode
, mode
;
83 struct cache_entry
*ce
= active_cache
[i
];
87 show_unmerge(ce
->name
);
89 !strcmp(ce
->name
, active_cache
[i
]->name
))
91 i
--; /* compensate for loop control increments */
95 if (lstat(ce
->name
, &st
) < 0) {
96 if (errno
!= ENOENT
&& errno
!= ENOTDIR
) {
105 changed
= ce_match_stat(ce
, &st
);
106 if (!changed
&& detect_rename
< DIFF_DETECT_COPY
)
109 oldmode
= ntohl(ce
->ce_mode
);
110 mode
= (S_ISLNK(st
.st_mode
) ? S_IFLNK
:
111 S_IFREG
| ce_permissions(st
.st_mode
));
113 show_modified(oldmode
, mode
, ce
->sha1
, null_sha1
,
117 diffcore_rename(detect_rename
, diff_score_opt
);
119 diffcore_pickaxe(pickaxe
);
121 diffcore_pathspec(argv
+ 1);
122 diff_flush(diff_output_format
, 1);