Merge branch 'th/diff-extra'
This commit is contained in:
commit
f3c5b39567
@ -47,12 +47,5 @@ int cmd_diff_files(int argc, const char **argv, const char *prefix)
|
|||||||
if (rev.pending.nr ||
|
if (rev.pending.nr ||
|
||||||
rev.min_age != -1 || rev.max_age != -1)
|
rev.min_age != -1 || rev.max_age != -1)
|
||||||
usage(diff_files_usage);
|
usage(diff_files_usage);
|
||||||
/*
|
|
||||||
* Backward compatibility wart - "diff-files -s" used to
|
|
||||||
* defeat the common diff option "-s" which asked for
|
|
||||||
* DIFF_FORMAT_NO_OUTPUT.
|
|
||||||
*/
|
|
||||||
if (rev.diffopt.output_format == DIFF_FORMAT_NO_OUTPUT)
|
|
||||||
rev.diffopt.output_format = DIFF_FORMAT_RAW;
|
|
||||||
return run_diff_files(&rev, silent);
|
return run_diff_files(&rev, silent);
|
||||||
}
|
}
|
||||||
|
@ -56,13 +56,6 @@ static int builtin_diff_files(struct rev_info *revs,
|
|||||||
if (revs->max_count < 0 &&
|
if (revs->max_count < 0 &&
|
||||||
(revs->diffopt.output_format & DIFF_FORMAT_PATCH))
|
(revs->diffopt.output_format & DIFF_FORMAT_PATCH))
|
||||||
revs->combine_merges = revs->dense_combined_merges = 1;
|
revs->combine_merges = revs->dense_combined_merges = 1;
|
||||||
/*
|
|
||||||
* Backward compatibility wart - "diff-files -s" used to
|
|
||||||
* defeat the common diff option "-s" which asked for
|
|
||||||
* DIFF_FORMAT_NO_OUTPUT.
|
|
||||||
*/
|
|
||||||
if (revs->diffopt.output_format == DIFF_FORMAT_NO_OUTPUT)
|
|
||||||
revs->diffopt.output_format = DIFF_FORMAT_RAW;
|
|
||||||
return run_diff_files(revs, silent);
|
return run_diff_files(revs, silent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
13
diff.c
13
diff.c
@ -1679,6 +1679,19 @@ void diff_setup(struct diff_options *options)
|
|||||||
|
|
||||||
int diff_setup_done(struct diff_options *options)
|
int diff_setup_done(struct diff_options *options)
|
||||||
{
|
{
|
||||||
|
int count = 0;
|
||||||
|
|
||||||
|
if (options->output_format & DIFF_FORMAT_NAME)
|
||||||
|
count++;
|
||||||
|
if (options->output_format & DIFF_FORMAT_NAME_STATUS)
|
||||||
|
count++;
|
||||||
|
if (options->output_format & DIFF_FORMAT_CHECKDIFF)
|
||||||
|
count++;
|
||||||
|
if (options->output_format & DIFF_FORMAT_NO_OUTPUT)
|
||||||
|
count++;
|
||||||
|
if (count > 1)
|
||||||
|
die("--name-only, --name-status, --check and -s are mutually exclusive");
|
||||||
|
|
||||||
if (options->find_copies_harder)
|
if (options->find_copies_harder)
|
||||||
options->detect_rename = DIFF_DETECT_COPY;
|
options->detect_rename = DIFF_DETECT_COPY;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user