3 #include "parse-options.h"
4 #include "range-diff.h"
7 static const char * const builtin_range_diff_usage
[] = {
8 N_("git range-diff [<options>] <old-base>..<old-tip> <new-base>..<new-tip>"),
9 N_("git range-diff [<options>] <old-tip>...<new-tip>"),
10 N_("git range-diff [<options>] <base> <old-tip> <new-tip>"),
14 int cmd_range_diff(int argc
, const char **argv
, const char *prefix
)
16 int creation_factor
= RANGE_DIFF_CREATION_FACTOR_DEFAULT
;
17 struct diff_options diffopt
= { NULL
};
18 struct strvec other_arg
= STRVEC_INIT
;
19 int simple_color
= -1;
20 struct option range_diff_options
[] = {
21 OPT_INTEGER(0, "creation-factor", &creation_factor
,
22 N_("Percentage by which creation is weighted")),
23 OPT_BOOL(0, "no-dual-color", &simple_color
,
24 N_("use simple diff colors")),
25 OPT_PASSTHRU_ARGV(0, "notes", &other_arg
,
26 N_("notes"), N_("passed to 'git log'"),
30 struct option
*options
;
32 struct strbuf range1
= STRBUF_INIT
, range2
= STRBUF_INIT
;
34 git_config(git_diff_ui_config
, NULL
);
36 repo_diff_setup(the_repository
, &diffopt
);
38 options
= parse_options_concat(range_diff_options
, diffopt
.parseopts
);
39 argc
= parse_options(argc
, argv
, prefix
, options
,
40 builtin_range_diff_usage
, 0);
42 diff_setup_done(&diffopt
);
44 /* force color when --dual-color was used */
46 diffopt
.use_color
= 1;
49 if (!strstr(argv
[0], ".."))
50 die(_("no .. in range: '%s'"), argv
[0]);
51 strbuf_addstr(&range1
, argv
[0]);
53 if (!strstr(argv
[1], ".."))
54 die(_("no .. in range: '%s'"), argv
[1]);
55 strbuf_addstr(&range2
, argv
[1]);
56 } else if (argc
== 3) {
57 strbuf_addf(&range1
, "%s..%s", argv
[0], argv
[1]);
58 strbuf_addf(&range2
, "%s..%s", argv
[0], argv
[2]);
59 } else if (argc
== 1) {
60 const char *b
= strstr(argv
[0], "..."), *a
= argv
[0];
64 error(_("single arg format must be symmetric range"));
65 usage_with_options(builtin_range_diff_usage
, options
);
76 strbuf_addf(&range1
, "%s..%.*s", b
, a_len
, a
);
77 strbuf_addf(&range2
, "%.*s..%s", a_len
, a
, b
);
79 error(_("need two commit ranges"));
80 usage_with_options(builtin_range_diff_usage
, options
);
82 FREE_AND_NULL(options
);
84 res
= show_range_diff(range1
.buf
, range2
.buf
, creation_factor
,
85 simple_color
< 1, &diffopt
, &other_arg
);
87 strvec_clear(&other_arg
);
88 strbuf_release(&range1
);
89 strbuf_release(&range2
);