diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-10-26 21:40:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-10-26 21:40:54 -0700 |
commit | 75b17fee72a0f78e0ad31728771231f8b3ed4d56 (patch) | |
tree | 190461ec1fedaf1a3c5d5d7fc9201a5a6455a144 /builtin/merge.c | |
parent | Merge branch 'ml/completion-zsh' (diff) | |
parent | merge-recursive: options to ignore whitespace changes (diff) | |
download | tgif-75b17fee72a0f78e0ad31728771231f8b3ed4d56.tar.xz |
Merge branch 'jf/merge-ignore-ws'
* jf/merge-ignore-ws:
merge-recursive: options to ignore whitespace changes
merge-recursive --patience
ll-merge: replace flag argument with options struct
merge-recursive: expose merge options for builtin merge
Diffstat (limited to 'builtin/merge.c')
-rw-r--r-- | builtin/merge.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/builtin/merge.c b/builtin/merge.c index 2dba3b9901..10f091b519 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -639,25 +639,9 @@ static int try_merge_strategy(const char *strategy, struct commit_list *common, o.renormalize = option_renormalize; - /* - * NEEDSWORK: merge with table in builtin/merge-recursive - */ - for (x = 0; x < xopts_nr; x++) { - if (!strcmp(xopts[x], "ours")) - o.recursive_variant = MERGE_RECURSIVE_OURS; - else if (!strcmp(xopts[x], "theirs")) - o.recursive_variant = MERGE_RECURSIVE_THEIRS; - else if (!strcmp(xopts[x], "subtree")) - o.subtree_shift = ""; - else if (!prefixcmp(xopts[x], "subtree=")) - o.subtree_shift = xopts[x]+8; - else if (!strcmp(xopts[x], "renormalize")) - o.renormalize = 1; - else if (!strcmp(xopts[x], "no-renormalize")) - o.renormalize = 0; - else + for (x = 0; x < xopts_nr; x++) + if (parse_merge_opt(&o, xopts[x])) die("Unknown option for merge-recursive: -X%s", xopts[x]); - } o.branch1 = head_arg; o.branch2 = remoteheads->item->util; |