7 #include "xdiff/xdiff.h"
8 #include "xdiff-interface.h"
9 #include "parse-options.h"
11 static const char *const merge_file_usage
[] = {
12 N_("git merge-file [<options>] [-L <name1> [-L <orig> [-L <name2>]]] <file1> <orig-file> <file2>"),
16 static int label_cb(const struct option
*opt
, const char *arg
, int unset
)
18 static int label_count
= 0;
19 const char **names
= (const char **)opt
->value
;
21 BUG_ON_OPT_NEG(unset
);
24 return error("too many labels on the command line");
25 names
[label_count
++] = arg
;
29 int cmd_merge_file(int argc
, const char **argv
, const char *prefix
)
31 const char *names
[3] = { 0 };
32 mmfile_t mmfs
[3] = { 0 };
33 mmbuffer_t result
= { 0 };
34 xmparam_t xmp
= { 0 };
35 int ret
= 0, i
= 0, to_stdout
= 0;
37 struct option options
[] = {
38 OPT_BOOL('p', "stdout", &to_stdout
, N_("send results to standard output")),
39 OPT_SET_INT(0, "diff3", &xmp
.style
, N_("use a diff3 based merge"), XDL_MERGE_DIFF3
),
40 OPT_SET_INT(0, "zdiff3", &xmp
.style
, N_("use a zealous diff3 based merge"),
41 XDL_MERGE_ZEALOUS_DIFF3
),
42 OPT_SET_INT(0, "ours", &xmp
.favor
, N_("for conflicts, use our version"),
43 XDL_MERGE_FAVOR_OURS
),
44 OPT_SET_INT(0, "theirs", &xmp
.favor
, N_("for conflicts, use their version"),
45 XDL_MERGE_FAVOR_THEIRS
),
46 OPT_SET_INT(0, "union", &xmp
.favor
, N_("for conflicts, use a union version"),
47 XDL_MERGE_FAVOR_UNION
),
48 OPT_INTEGER(0, "marker-size", &xmp
.marker_size
,
49 N_("for conflicts, use this marker size")),
50 OPT__QUIET(&quiet
, N_("do not warn about conflicts")),
51 OPT_CALLBACK('L', NULL
, names
, N_("name"),
52 N_("set labels for file1/orig-file/file2"), &label_cb
),
56 xmp
.level
= XDL_MERGE_ZEALOUS_ALNUM
;
60 if (startup_info
->have_repository
) {
61 /* Read the configuration file */
62 git_config(git_xmerge_config
, NULL
);
63 if (0 <= git_xmerge_style
)
64 xmp
.style
= git_xmerge_style
;
67 argc
= parse_options(argc
, argv
, prefix
, options
, merge_file_usage
, 0);
69 usage_with_options(merge_file_usage
, options
);
71 if (!freopen("/dev/null", "w", stderr
))
72 return error_errno("failed to redirect stderr to /dev/null");
75 for (i
= 0; i
< 3; i
++) {
77 mmfile_t
*mmf
= mmfs
+ i
;
82 fname
= prefix_filename(prefix
, argv
[i
]);
84 if (read_mmfile(mmf
, fname
))
86 else if (mmf
->size
> MAX_XDIFF_SIZE
||
87 buffer_is_binary(mmf
->ptr
, mmf
->size
))
88 ret
= error("Cannot merge binary files: %s",
97 xmp
.ancestor
= names
[1];
100 ret
= xdl_merge(mmfs
+ 1, mmfs
+ 0, mmfs
+ 2, &xmp
, &result
);
103 const char *filename
= argv
[0];
104 char *fpath
= prefix_filename(prefix
, argv
[0]);
105 FILE *f
= to_stdout
? stdout
: fopen(fpath
, "wb");
108 ret
= error_errno("Could not open %s for writing",
110 else if (result
.size
&&
111 fwrite(result
.ptr
, result
.size
, 1, f
) != 1)
112 ret
= error_errno("Could not write to %s", filename
);
114 ret
= error_errno("Could not close %s", filename
);
123 for (i
= 0; i
< 3; i
++)