git merge -X<option>
Teach "-X <option>" command line argument to "git merge" that is passed to strategy implementations. "ours" and "theirs" autoresolution introduced by the previous commit can be asked to the recursive strategy. Signed-off-by: Avery Pennarun <apenwarr@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
73eb40eeaa
commit
8cc5b29065
@ -6,7 +6,11 @@
|
||||
struct merge_options {
|
||||
const char *branch1;
|
||||
const char *branch2;
|
||||
unsigned subtree_merge : 1;
|
||||
enum {
|
||||
MERGE_RECURSIVE_SUBTREE = 1,
|
||||
MERGE_RECURSIVE_OURS,
|
||||
MERGE_RECURSIVE_THEIRS,
|
||||
} recursive_variant;
|
||||
unsigned buffer_output : 1;
|
||||
int verbosity;
|
||||
int diff_rename_limit;
|
||||
|
Reference in New Issue
Block a user