6 #include "run-command.h"
7 #include "resolve-undo.h"
9 #include "unpack-trees.h"
12 static const char *merge_argument(struct commit
*commit
)
15 return oid_to_hex(&commit
->object
.oid
);
17 return EMPTY_TREE_SHA1_HEX
;
20 int index_has_changes(struct strbuf
*sb
)
22 struct object_id head
;
25 if (!get_oid_tree("HEAD", &head
)) {
26 struct diff_options opt
;
29 opt
.flags
.exit_with_status
= 1;
32 do_diff_cache(&head
, &opt
);
34 for (i
= 0; sb
&& i
< diff_queued_diff
.nr
; i
++) {
36 strbuf_addch(sb
, ' ');
37 strbuf_addstr(sb
, diff_queued_diff
.queue
[i
]->two
->path
);
40 return opt
.flags
.has_changes
!= 0;
42 for (i
= 0; sb
&& i
< active_nr
; i
++) {
44 strbuf_addch(sb
, ' ');
45 strbuf_addstr(sb
, active_cache
[i
]->name
);
51 int try_merge_command(const char *strategy
, size_t xopts_nr
,
52 const char **xopts
, struct commit_list
*common
,
53 const char *head_arg
, struct commit_list
*remotes
)
55 struct argv_array args
= ARGV_ARRAY_INIT
;
57 struct commit_list
*j
;
59 argv_array_pushf(&args
, "merge-%s", strategy
);
60 for (i
= 0; i
< xopts_nr
; i
++)
61 argv_array_pushf(&args
, "--%s", xopts
[i
]);
62 for (j
= common
; j
; j
= j
->next
)
63 argv_array_push(&args
, merge_argument(j
->item
));
64 argv_array_push(&args
, "--");
65 argv_array_push(&args
, head_arg
);
66 for (j
= remotes
; j
; j
= j
->next
)
67 argv_array_push(&args
, merge_argument(j
->item
));
69 ret
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
70 argv_array_clear(&args
);
74 die(_("failed to read the cache"));
80 int checkout_fast_forward(const struct object_id
*head
,
81 const struct object_id
*remote
,
84 struct tree
*trees
[MAX_UNPACK_TREES
];
85 struct unpack_trees_options opts
;
86 struct tree_desc t
[MAX_UNPACK_TREES
];
88 struct dir_struct dir
;
89 struct lock_file lock_file
= LOCK_INIT
;
91 refresh_cache(REFRESH_QUIET
);
93 if (hold_locked_index(&lock_file
, LOCK_REPORT_ON_ERROR
) < 0)
96 memset(&trees
, 0, sizeof(trees
));
97 memset(&opts
, 0, sizeof(opts
));
98 memset(&t
, 0, sizeof(t
));
99 if (overwrite_ignore
) {
100 memset(&dir
, 0, sizeof(dir
));
101 dir
.flags
|= DIR_SHOW_IGNORED
;
102 setup_standard_excludes(&dir
);
107 opts
.src_index
= &the_index
;
108 opts
.dst_index
= &the_index
;
110 opts
.verbose_update
= 1;
112 opts
.fn
= twoway_merge
;
113 setup_unpack_trees_porcelain(&opts
, "merge");
115 trees
[nr_trees
] = parse_tree_indirect(head
);
116 if (!trees
[nr_trees
++])
118 trees
[nr_trees
] = parse_tree_indirect(remote
);
119 if (!trees
[nr_trees
++])
121 for (i
= 0; i
< nr_trees
; i
++) {
122 parse_tree(trees
[i
]);
123 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
125 if (unpack_trees(nr_trees
, t
, &opts
))
127 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
128 return error(_("unable to write new index file"));