]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/pull.c
Merge branch 'ma/sequencer-do-reset-saner-loop-termination'
[thirdparty/git.git] / builtin / pull.c
CommitLineData
1e1ea69f
PT
1/*
2 * Builtin "git pull"
3 *
4 * Based on git-pull.sh by Junio C Hamano
5 *
6 * Fetch one or more remote refs and merge it/them into the current HEAD.
7 */
8#include "cache.h"
b2141fc1 9#include "config.h"
1e1ea69f
PT
10#include "builtin.h"
11#include "parse-options.h"
d807c4a0 12#include "exec-cmd.h"
f2c5baa1 13#include "run-command.h"
44c175c7
PT
14#include "sha1-array.h"
15#include "remote.h"
4a4cf9e8 16#include "dir.h"
49ec402d 17#include "refs.h"
ec0cb496 18#include "refspec.h"
8944969c 19#include "revision.h"
a6d7eb2c
SB
20#include "submodule.h"
21#include "submodule-config.h"
db86e61c 22#include "tempfile.h"
8944969c 23#include "lockfile.h"
fd84986f 24#include "wt-status.h"
64043556 25#include "commit-reach.h"
1e1ea69f 26
1678b81e
PT
27enum rebase_type {
28 REBASE_INVALID = -1,
29 REBASE_FALSE = 0,
30 REBASE_TRUE,
f5eb87b9 31 REBASE_PRESERVE,
1131ec98 32 REBASE_MERGES,
f5eb87b9 33 REBASE_INTERACTIVE
1678b81e
PT
34};
35
36/**
37 * Parses the value of --rebase. If value is a false value, returns
38 * REBASE_FALSE. If value is a true value, returns REBASE_TRUE. If value is
1131ec98
JS
39 * "merges", returns REBASE_MERGES. If value is "preserve", returns
40 * REBASE_PRESERVE. If value is a invalid value, dies with a fatal error if
41 * fatal is true, otherwise returns REBASE_INVALID.
1678b81e
PT
42 */
43static enum rebase_type parse_config_rebase(const char *key, const char *value,
44 int fatal)
45{
89576613 46 int v = git_parse_maybe_bool(value);
1678b81e
PT
47
48 if (!v)
49 return REBASE_FALSE;
50 else if (v > 0)
51 return REBASE_TRUE;
46af44b0 52 else if (!strcmp(value, "preserve") || !strcmp(value, "p"))
1678b81e 53 return REBASE_PRESERVE;
46af44b0 54 else if (!strcmp(value, "merges") || !strcmp(value, "m"))
1131ec98 55 return REBASE_MERGES;
46af44b0 56 else if (!strcmp(value, "interactive") || !strcmp(value, "i"))
f5eb87b9 57 return REBASE_INTERACTIVE;
1678b81e
PT
58
59 if (fatal)
60 die(_("Invalid value for %s: %s"), key, value);
61 else
62 error(_("Invalid value for %s: %s"), key, value);
63
64 return REBASE_INVALID;
65}
66
67/**
68 * Callback for --rebase, which parses arg with parse_config_rebase().
69 */
70static int parse_opt_rebase(const struct option *opt, const char *arg, int unset)
71{
72 enum rebase_type *value = opt->value;
73
74 if (arg)
75 *value = parse_config_rebase("--rebase", arg, 0);
76 else
77 *value = unset ? REBASE_FALSE : REBASE_TRUE;
78 return *value == REBASE_INVALID ? -1 : 0;
79}
80
1e1ea69f 81static const char * const pull_usage[] = {
e7a7401f 82 N_("git pull [<options>] [<repository> [<refspec>...]]"),
1e1ea69f
PT
83 NULL
84};
85
2a747902
PT
86/* Shared options */
87static int opt_verbosity;
88static char *opt_progress;
a6d7eb2c 89static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
2a747902 90
1678b81e 91/* Options passed to git-merge or git-rebase */
81dbd768 92static enum rebase_type opt_rebase = -1;
11b6d178
PT
93static char *opt_diffstat;
94static char *opt_log;
3a4d2c74 95static char *opt_signoff;
11b6d178
PT
96static char *opt_squash;
97static char *opt_commit;
98static char *opt_edit;
99static char *opt_ff;
100static char *opt_verify_signatures;
f66398eb 101static int opt_autostash = -1;
c48d73bd 102static int config_autostash;
11b6d178
PT
103static struct argv_array opt_strategies = ARGV_ARRAY_INIT;
104static struct argv_array opt_strategy_opts = ARGV_ARRAY_INIT;
105static char *opt_gpg_sign;
09c2cb87 106static int opt_allow_unrelated_histories;
11b6d178 107
a32975f5
PT
108/* Options passed to git-fetch */
109static char *opt_all;
110static char *opt_append;
111static char *opt_upload_pack;
112static int opt_force;
113static char *opt_tags;
114static char *opt_prune;
62104ba1 115static char *max_children;
a32975f5
PT
116static int opt_dry_run;
117static char *opt_keep;
118static char *opt_depth;
119static char *opt_unshallow;
120static char *opt_update_shallow;
121static char *opt_refmap;
ffb4568a
WS
122static char *opt_ipv4;
123static char *opt_ipv6;
a32975f5 124
1e1ea69f 125static struct option pull_options[] = {
2a747902
PT
126 /* Shared options */
127 OPT__VERBOSITY(&opt_verbosity),
128 OPT_PASSTHRU(0, "progress", &opt_progress, NULL,
129 N_("force progress reporting"),
130 PARSE_OPT_NOARG),
a6d7eb2c
SB
131 { OPTION_CALLBACK, 0, "recurse-submodules",
132 &recurse_submodules, N_("on-demand"),
133 N_("control for recursive fetching of submodules"),
134 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
2a747902 135
1678b81e 136 /* Options passed to git-merge or git-rebase */
11b6d178 137 OPT_GROUP(N_("Options related to merging")),
1678b81e 138 { OPTION_CALLBACK, 'r', "rebase", &opt_rebase,
bbc072f5 139 "(false|true|merges|preserve|interactive)",
1678b81e
PT
140 N_("incorporate changes by rebasing rather than merging"),
141 PARSE_OPT_OPTARG, parse_opt_rebase },
11b6d178
PT
142 OPT_PASSTHRU('n', NULL, &opt_diffstat, NULL,
143 N_("do not show a diffstat at the end of the merge"),
144 PARSE_OPT_NOARG | PARSE_OPT_NONEG),
145 OPT_PASSTHRU(0, "stat", &opt_diffstat, NULL,
146 N_("show a diffstat at the end of the merge"),
147 PARSE_OPT_NOARG),
148 OPT_PASSTHRU(0, "summary", &opt_diffstat, NULL,
149 N_("(synonym to --stat)"),
150 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN),
151 OPT_PASSTHRU(0, "log", &opt_log, N_("n"),
152 N_("add (at most <n>) entries from shortlog to merge commit message"),
153 PARSE_OPT_OPTARG),
3a4d2c74
TK
154 OPT_PASSTHRU(0, "signoff", &opt_signoff, NULL,
155 N_("add Signed-off-by:"),
156 PARSE_OPT_OPTARG),
11b6d178
PT
157 OPT_PASSTHRU(0, "squash", &opt_squash, NULL,
158 N_("create a single commit instead of doing a merge"),
159 PARSE_OPT_NOARG),
160 OPT_PASSTHRU(0, "commit", &opt_commit, NULL,
161 N_("perform a commit if the merge succeeds (default)"),
162 PARSE_OPT_NOARG),
163 OPT_PASSTHRU(0, "edit", &opt_edit, NULL,
164 N_("edit message before committing"),
165 PARSE_OPT_NOARG),
166 OPT_PASSTHRU(0, "ff", &opt_ff, NULL,
167 N_("allow fast-forward"),
168 PARSE_OPT_NOARG),
169 OPT_PASSTHRU(0, "ff-only", &opt_ff, NULL,
170 N_("abort if fast-forward is not possible"),
171 PARSE_OPT_NOARG | PARSE_OPT_NONEG),
172 OPT_PASSTHRU(0, "verify-signatures", &opt_verify_signatures, NULL,
173 N_("verify that the named commit has a valid GPG signature"),
174 PARSE_OPT_NOARG),
f66398eb
MJ
175 OPT_BOOL(0, "autostash", &opt_autostash,
176 N_("automatically stash/stash pop before and after rebase")),
11b6d178
PT
177 OPT_PASSTHRU_ARGV('s', "strategy", &opt_strategies, N_("strategy"),
178 N_("merge strategy to use"),
179 0),
180 OPT_PASSTHRU_ARGV('X', "strategy-option", &opt_strategy_opts,
181 N_("option=value"),
182 N_("option for selected merge strategy"),
183 0),
184 OPT_PASSTHRU('S', "gpg-sign", &opt_gpg_sign, N_("key-id"),
185 N_("GPG sign commit"),
186 PARSE_OPT_OPTARG),
09c2cb87
JH
187 OPT_SET_INT(0, "allow-unrelated-histories",
188 &opt_allow_unrelated_histories,
189 N_("allow merging unrelated histories"), 1),
11b6d178 190
a32975f5
PT
191 /* Options passed to git-fetch */
192 OPT_GROUP(N_("Options related to fetching")),
193 OPT_PASSTHRU(0, "all", &opt_all, NULL,
194 N_("fetch from all remotes"),
195 PARSE_OPT_NOARG),
196 OPT_PASSTHRU('a', "append", &opt_append, NULL,
197 N_("append to .git/FETCH_HEAD instead of overwriting"),
198 PARSE_OPT_NOARG),
199 OPT_PASSTHRU(0, "upload-pack", &opt_upload_pack, N_("path"),
200 N_("path to upload pack on remote end"),
201 0),
1224781d 202 OPT__FORCE(&opt_force, N_("force overwrite of local branch"), 0),
a32975f5
PT
203 OPT_PASSTHRU('t', "tags", &opt_tags, NULL,
204 N_("fetch all tags and associated objects"),
205 PARSE_OPT_NOARG),
206 OPT_PASSTHRU('p', "prune", &opt_prune, NULL,
207 N_("prune remote-tracking branches no longer on remote"),
208 PARSE_OPT_NOARG),
62104ba1
SB
209 OPT_PASSTHRU('j', "jobs", &max_children, N_("n"),
210 N_("number of submodules pulled in parallel"),
211 PARSE_OPT_OPTARG),
a32975f5
PT
212 OPT_BOOL(0, "dry-run", &opt_dry_run,
213 N_("dry run")),
214 OPT_PASSTHRU('k', "keep", &opt_keep, NULL,
215 N_("keep downloaded pack"),
216 PARSE_OPT_NOARG),
217 OPT_PASSTHRU(0, "depth", &opt_depth, N_("depth"),
218 N_("deepen history of shallow clone"),
219 0),
220 OPT_PASSTHRU(0, "unshallow", &opt_unshallow, NULL,
221 N_("convert to a complete repository"),
222 PARSE_OPT_NONEG | PARSE_OPT_NOARG),
223 OPT_PASSTHRU(0, "update-shallow", &opt_update_shallow, NULL,
224 N_("accept refs that update .git/shallow"),
225 PARSE_OPT_NOARG),
226 OPT_PASSTHRU(0, "refmap", &opt_refmap, N_("refmap"),
227 N_("specify fetch refmap"),
228 PARSE_OPT_NONEG),
ffb4568a
WS
229 OPT_PASSTHRU('4', "ipv4", &opt_ipv4, NULL,
230 N_("use IPv4 addresses only"),
231 PARSE_OPT_NOARG),
232 OPT_PASSTHRU('6', "ipv6", &opt_ipv6, NULL,
233 N_("use IPv6 addresses only"),
234 PARSE_OPT_NOARG),
a32975f5 235
1e1ea69f
PT
236 OPT_END()
237};
238
2a747902
PT
239/**
240 * Pushes "-q" or "-v" switches into arr to match the opt_verbosity level.
241 */
242static void argv_push_verbosity(struct argv_array *arr)
243{
244 int verbosity;
245
246 for (verbosity = opt_verbosity; verbosity > 0; verbosity--)
247 argv_array_push(arr, "-v");
248
249 for (verbosity = opt_verbosity; verbosity < 0; verbosity++)
250 argv_array_push(arr, "-q");
251}
252
a32975f5
PT
253/**
254 * Pushes "-f" switches into arr to match the opt_force level.
255 */
256static void argv_push_force(struct argv_array *arr)
257{
258 int force = opt_force;
259 while (force-- > 0)
260 argv_array_push(arr, "-f");
261}
262
41fca098
PT
263/**
264 * Sets the GIT_REFLOG_ACTION environment variable to the concatenation of argv
265 */
266static void set_reflog_message(int argc, const char **argv)
267{
268 int i;
269 struct strbuf msg = STRBUF_INIT;
270
271 for (i = 0; i < argc; i++) {
272 if (i)
273 strbuf_addch(&msg, ' ');
274 strbuf_addstr(&msg, argv[i]);
275 }
276
277 setenv("GIT_REFLOG_ACTION", msg.buf, 0);
278
279 strbuf_release(&msg);
280}
281
a9de9897
PT
282/**
283 * If pull.ff is unset, returns NULL. If pull.ff is "true", returns "--ff". If
284 * pull.ff is "false", returns "--no-ff". If pull.ff is "only", returns
285 * "--ff-only". Otherwise, if pull.ff is set to an invalid value, die with an
286 * error.
287 */
288static const char *config_get_ff(void)
289{
290 const char *value;
291
292 if (git_config_get_value("pull.ff", &value))
293 return NULL;
294
89576613 295 switch (git_parse_maybe_bool(value)) {
a9de9897
PT
296 case 0:
297 return "--no-ff";
298 case 1:
299 return "--ff";
300 }
301
302 if (!strcmp(value, "only"))
303 return "--ff-only";
304
305 die(_("Invalid value for pull.ff: %s"), value);
306}
307
81dbd768
PT
308/**
309 * Returns the default configured value for --rebase. It first looks for the
310 * value of "branch.$curr_branch.rebase", where $curr_branch is the current
311 * branch, and if HEAD is detached or the configuration key does not exist,
312 * looks for the value of "pull.rebase". If both configuration keys do not
313 * exist, returns REBASE_FALSE.
314 */
315static enum rebase_type config_get_rebase(void)
316{
317 struct branch *curr_branch = branch_get("HEAD");
318 const char *value;
319
320 if (curr_branch) {
321 char *key = xstrfmt("branch.%s.rebase", curr_branch->name);
322
323 if (!git_config_get_value(key, &value)) {
324 enum rebase_type ret = parse_config_rebase(key, value, 1);
325 free(key);
326 return ret;
327 }
328
329 free(key);
330 }
331
332 if (!git_config_get_value("pull.rebase", &value))
333 return parse_config_rebase("pull.rebase", value, 1);
334
335 return REBASE_FALSE;
336}
337
c48d73bd
MJ
338/**
339 * Read config variables.
340 */
341static int git_pull_config(const char *var, const char *value, void *cb)
342{
343 if (!strcmp(var, "rebase.autostash")) {
344 config_autostash = git_config_bool(var, value);
345 return 0;
121e43fa
NMC
346 } else if (!strcmp(var, "submodule.recurse")) {
347 recurse_submodules = git_config_bool(var, value) ?
348 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
349 return 0;
c48d73bd
MJ
350 }
351 return git_default_config(var, value, cb);
352}
353
44c175c7
PT
354/**
355 * Appends merge candidates from FETCH_HEAD that are not marked not-for-merge
356 * into merge_heads.
357 */
910650d2 358static void get_merge_heads(struct oid_array *merge_heads)
44c175c7 359{
102de880 360 const char *filename = git_path_fetch_head(the_repository);
44c175c7
PT
361 FILE *fp;
362 struct strbuf sb = STRBUF_INIT;
14bb40b3 363 struct object_id oid;
44c175c7 364
23a9e071 365 fp = xfopen(filename, "r");
8f309aeb 366 while (strbuf_getline_lf(&sb, fp) != EOF) {
14bb40b3 367 if (get_oid_hex(sb.buf, &oid))
44c175c7
PT
368 continue; /* invalid line: does not start with SHA1 */
369 if (starts_with(sb.buf + GIT_SHA1_HEXSZ, "\tnot-for-merge\t"))
370 continue; /* ref is not-for-merge */
910650d2 371 oid_array_append(merge_heads, &oid);
44c175c7
PT
372 }
373 fclose(fp);
374 strbuf_release(&sb);
375}
376
377/**
378 * Used by die_no_merge_candidates() as a for_each_remote() callback to
379 * retrieve the name of the remote if the repository only has one remote.
380 */
381static int get_only_remote(struct remote *remote, void *cb_data)
382{
383 const char **remote_name = cb_data;
384
385 if (*remote_name)
386 return -1;
387
388 *remote_name = remote->name;
389 return 0;
390}
391
392/**
393 * Dies with the appropriate reason for why there are no merge candidates:
394 *
395 * 1. We fetched from a specific remote, and a refspec was given, but it ended
396 * up not fetching anything. This is usually because the user provided a
397 * wildcard refspec which had no matches on the remote end.
398 *
399 * 2. We fetched from a non-default remote, but didn't specify a branch to
400 * merge. We can't use the configured one because it applies to the default
401 * remote, thus the user must specify the branches to merge.
402 *
403 * 3. We fetched from the branch's or repo's default remote, but:
404 *
405 * a. We are not on a branch, so there will never be a configured branch to
406 * merge with.
407 *
408 * b. We are on a branch, but there is no configured branch to merge with.
409 *
410 * 4. We fetched from the branch's or repo's default remote, but the configured
411 * branch to merge didn't get fetched. (Either it doesn't exist, or wasn't
412 * part of the configured fetch refspec.)
413 */
414static void NORETURN die_no_merge_candidates(const char *repo, const char **refspecs)
415{
416 struct branch *curr_branch = branch_get("HEAD");
417 const char *remote = curr_branch ? curr_branch->remote_name : NULL;
418
419 if (*refspecs) {
b7b31471
PT
420 if (opt_rebase)
421 fprintf_ln(stderr, _("There is no candidate for rebasing against among the refs that you just fetched."));
422 else
423 fprintf_ln(stderr, _("There are no candidates for merging among the refs that you just fetched."));
44c175c7
PT
424 fprintf_ln(stderr, _("Generally this means that you provided a wildcard refspec which had no\n"
425 "matches on the remote end."));
426 } else if (repo && curr_branch && (!remote || strcmp(repo, remote))) {
427 fprintf_ln(stderr, _("You asked to pull from the remote '%s', but did not specify\n"
428 "a branch. Because this is not the default configured remote\n"
429 "for your current branch, you must specify a branch on the command line."),
430 repo);
431 } else if (!curr_branch) {
432 fprintf_ln(stderr, _("You are not currently on a branch."));
b7b31471
PT
433 if (opt_rebase)
434 fprintf_ln(stderr, _("Please specify which branch you want to rebase against."));
435 else
436 fprintf_ln(stderr, _("Please specify which branch you want to merge with."));
44c175c7
PT
437 fprintf_ln(stderr, _("See git-pull(1) for details."));
438 fprintf(stderr, "\n");
8a0de58a 439 fprintf_ln(stderr, " git pull %s %s", _("<remote>"), _("<branch>"));
44c175c7
PT
440 fprintf(stderr, "\n");
441 } else if (!curr_branch->merge_nr) {
442 const char *remote_name = NULL;
443
444 if (for_each_remote(get_only_remote, &remote_name) || !remote_name)
8a0de58a 445 remote_name = _("<remote>");
44c175c7
PT
446
447 fprintf_ln(stderr, _("There is no tracking information for the current branch."));
b7b31471
PT
448 if (opt_rebase)
449 fprintf_ln(stderr, _("Please specify which branch you want to rebase against."));
450 else
451 fprintf_ln(stderr, _("Please specify which branch you want to merge with."));
44c175c7
PT
452 fprintf_ln(stderr, _("See git-pull(1) for details."));
453 fprintf(stderr, "\n");
8a0de58a 454 fprintf_ln(stderr, " git pull %s %s", _("<remote>"), _("<branch>"));
44c175c7 455 fprintf(stderr, "\n");
daf9f649
VA
456 fprintf_ln(stderr, _("If you wish to set tracking information for this branch you can do so with:"));
457 fprintf(stderr, "\n");
458 fprintf_ln(stderr, " git branch --set-upstream-to=%s/%s %s\n",
459 remote_name, _("<branch>"), curr_branch->name);
44c175c7
PT
460 } else
461 fprintf_ln(stderr, _("Your configuration specifies to merge with the ref '%s'\n"
462 "from the remote, but no such ref was fetched."),
463 *curr_branch->merge_name);
464 exit(1);
465}
466
f2c5baa1
PT
467/**
468 * Parses argv into [<repo> [<refspecs>...]], returning their values in `repo`
469 * as a string and `refspecs` as a null-terminated array of strings. If `repo`
470 * is not provided in argv, it is set to NULL.
471 */
472static void parse_repo_refspecs(int argc, const char **argv, const char **repo,
473 const char ***refspecs)
474{
475 if (argc > 0) {
476 *repo = *argv++;
477 argc--;
478 } else
479 *repo = NULL;
480 *refspecs = argv;
481}
482
483/**
484 * Runs git-fetch, returning its exit status. `repo` and `refspecs` are the
485 * repository and refspecs to fetch, or NULL if they are not provided.
486 */
487static int run_fetch(const char *repo, const char **refspecs)
488{
489 struct argv_array args = ARGV_ARRAY_INIT;
490 int ret;
491
492 argv_array_pushl(&args, "fetch", "--update-head-ok", NULL);
2a747902
PT
493
494 /* Shared options */
495 argv_push_verbosity(&args);
496 if (opt_progress)
497 argv_array_push(&args, opt_progress);
498
a32975f5
PT
499 /* Options passed to git-fetch */
500 if (opt_all)
501 argv_array_push(&args, opt_all);
502 if (opt_append)
503 argv_array_push(&args, opt_append);
504 if (opt_upload_pack)
505 argv_array_push(&args, opt_upload_pack);
506 argv_push_force(&args);
507 if (opt_tags)
508 argv_array_push(&args, opt_tags);
509 if (opt_prune)
510 argv_array_push(&args, opt_prune);
a6d7eb2c
SB
511 if (recurse_submodules != RECURSE_SUBMODULES_DEFAULT)
512 switch (recurse_submodules) {
513 case RECURSE_SUBMODULES_ON:
514 argv_array_push(&args, "--recurse-submodules=on");
515 break;
516 case RECURSE_SUBMODULES_OFF:
517 argv_array_push(&args, "--recurse-submodules=no");
518 break;
519 case RECURSE_SUBMODULES_ON_DEMAND:
520 argv_array_push(&args, "--recurse-submodules=on-demand");
521 break;
522 default:
523 BUG("submodule recursion option not understood");
524 }
62104ba1
SB
525 if (max_children)
526 argv_array_push(&args, max_children);
a32975f5
PT
527 if (opt_dry_run)
528 argv_array_push(&args, "--dry-run");
529 if (opt_keep)
530 argv_array_push(&args, opt_keep);
531 if (opt_depth)
532 argv_array_push(&args, opt_depth);
533 if (opt_unshallow)
534 argv_array_push(&args, opt_unshallow);
535 if (opt_update_shallow)
536 argv_array_push(&args, opt_update_shallow);
537 if (opt_refmap)
538 argv_array_push(&args, opt_refmap);
ffb4568a
WS
539 if (opt_ipv4)
540 argv_array_push(&args, opt_ipv4);
541 if (opt_ipv6)
542 argv_array_push(&args, opt_ipv6);
a32975f5 543
f2c5baa1
PT
544 if (repo) {
545 argv_array_push(&args, repo);
546 argv_array_pushv(&args, refspecs);
547 } else if (*refspecs)
033abf97 548 BUG("refspecs without repo?");
f2c5baa1
PT
549 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
550 argv_array_clear(&args);
551 return ret;
552}
553
49ec402d
PT
554/**
555 * "Pulls into void" by branching off merge_head.
556 */
ee3051bd 557static int pull_into_void(const struct object_id *merge_head,
f9b11147 558 const struct object_id *curr_head)
49ec402d
PT
559{
560 /*
561 * Two-way merge: we treat the index as based on an empty tree,
562 * and try to fast-forward to HEAD. This ensures we will not lose
563 * index/worktree changes that the user already made on the unborn
564 * branch.
565 */
7e196c3a
NTND
566 if (checkout_fast_forward(the_repository,
567 the_hash_algo->empty_tree,
568 merge_head, 0))
49ec402d
PT
569 return 1;
570
ae077771 571 if (update_ref("initial pull", "HEAD", merge_head, curr_head, 0, UPDATE_REFS_DIE_ON_ERR))
49ec402d
PT
572 return 1;
573
574 return 0;
575}
576
a6d7eb2c
SB
577static int rebase_submodules(void)
578{
579 struct child_process cp = CHILD_PROCESS_INIT;
580
581 cp.git_cmd = 1;
582 cp.no_stdin = 1;
583 argv_array_pushl(&cp.args, "submodule", "update",
584 "--recursive", "--rebase", NULL);
a56771a6 585 argv_push_verbosity(&cp.args);
a6d7eb2c
SB
586
587 return run_command(&cp);
588}
589
590static int update_submodules(void)
591{
592 struct child_process cp = CHILD_PROCESS_INIT;
593
594 cp.git_cmd = 1;
595 cp.no_stdin = 1;
596 argv_array_pushl(&cp.args, "submodule", "update",
597 "--recursive", "--checkout", NULL);
a56771a6 598 argv_push_verbosity(&cp.args);
a6d7eb2c
SB
599
600 return run_command(&cp);
601}
602
f2c5baa1
PT
603/**
604 * Runs git-merge, returning its exit status.
605 */
606static int run_merge(void)
607{
608 int ret;
609 struct argv_array args = ARGV_ARRAY_INIT;
610
611 argv_array_pushl(&args, "merge", NULL);
2a747902
PT
612
613 /* Shared options */
614 argv_push_verbosity(&args);
615 if (opt_progress)
616 argv_array_push(&args, opt_progress);
617
11b6d178
PT
618 /* Options passed to git-merge */
619 if (opt_diffstat)
620 argv_array_push(&args, opt_diffstat);
621 if (opt_log)
622 argv_array_push(&args, opt_log);
3a4d2c74
TK
623 if (opt_signoff)
624 argv_array_push(&args, opt_signoff);
11b6d178
PT
625 if (opt_squash)
626 argv_array_push(&args, opt_squash);
627 if (opt_commit)
628 argv_array_push(&args, opt_commit);
629 if (opt_edit)
630 argv_array_push(&args, opt_edit);
631 if (opt_ff)
632 argv_array_push(&args, opt_ff);
633 if (opt_verify_signatures)
634 argv_array_push(&args, opt_verify_signatures);
635 argv_array_pushv(&args, opt_strategies.argv);
636 argv_array_pushv(&args, opt_strategy_opts.argv);
637 if (opt_gpg_sign)
638 argv_array_push(&args, opt_gpg_sign);
09c2cb87
JH
639 if (opt_allow_unrelated_histories > 0)
640 argv_array_push(&args, "--allow-unrelated-histories");
11b6d178 641
f2c5baa1
PT
642 argv_array_push(&args, "FETCH_HEAD");
643 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
644 argv_array_clear(&args);
645 return ret;
646}
647
1678b81e
PT
648/**
649 * Returns remote's upstream branch for the current branch. If remote is NULL,
650 * the current branch's configured default remote is used. Returns NULL if
651 * `remote` does not name a valid remote, HEAD does not point to a branch,
652 * remote is not the branch's configured remote or the branch does not have any
653 * configured upstream branch.
654 */
655static const char *get_upstream_branch(const char *remote)
656{
657 struct remote *rm;
658 struct branch *curr_branch;
659 const char *curr_branch_remote;
660
661 rm = remote_get(remote);
662 if (!rm)
663 return NULL;
664
665 curr_branch = branch_get("HEAD");
666 if (!curr_branch)
667 return NULL;
668
669 curr_branch_remote = remote_for_branch(curr_branch, NULL);
670 assert(curr_branch_remote);
671
672 if (strcmp(curr_branch_remote, rm->name))
673 return NULL;
674
675 return branch_get_upstream(curr_branch, NULL);
676}
677
678/**
30aa96cd 679 * Derives the remote-tracking branch from the remote and refspec.
1678b81e
PT
680 *
681 * FIXME: The current implementation assumes the default mapping of
682 * refs/heads/<branch_name> to refs/remotes/<remote_name>/<branch_name>.
683 */
684static const char *get_tracking_branch(const char *remote, const char *refspec)
685{
895d3912 686 struct refspec_item spec;
1678b81e
PT
687 const char *spec_src;
688 const char *merge_branch;
689
dc064221 690 refspec_item_init_or_die(&spec, refspec, REFSPEC_FETCH);
895d3912 691 spec_src = spec.src;
1678b81e
PT
692 if (!*spec_src || !strcmp(spec_src, "HEAD"))
693 spec_src = "HEAD";
694 else if (skip_prefix(spec_src, "heads/", &spec_src))
695 ;
696 else if (skip_prefix(spec_src, "refs/heads/", &spec_src))
697 ;
698 else if (starts_with(spec_src, "refs/") ||
699 starts_with(spec_src, "tags/") ||
700 starts_with(spec_src, "remotes/"))
701 spec_src = "";
702
703 if (*spec_src) {
704 if (!strcmp(remote, "."))
705 merge_branch = mkpath("refs/heads/%s", spec_src);
706 else
707 merge_branch = mkpath("refs/remotes/%s/%s", remote, spec_src);
708 } else
709 merge_branch = NULL;
710
895d3912 711 refspec_item_clear(&spec);
1678b81e
PT
712 return merge_branch;
713}
714
715/**
716 * Given the repo and refspecs, sets fork_point to the point at which the
30aa96cd 717 * current branch forked from its remote-tracking branch. Returns 0 on success,
1678b81e
PT
718 * -1 on failure.
719 */
f9b11147 720static int get_rebase_fork_point(struct object_id *fork_point, const char *repo,
1678b81e
PT
721 const char *refspec)
722{
723 int ret;
724 struct branch *curr_branch;
725 const char *remote_branch;
726 struct child_process cp = CHILD_PROCESS_INIT;
727 struct strbuf sb = STRBUF_INIT;
728
729 curr_branch = branch_get("HEAD");
730 if (!curr_branch)
731 return -1;
732
733 if (refspec)
734 remote_branch = get_tracking_branch(repo, refspec);
735 else
736 remote_branch = get_upstream_branch(repo);
737
738 if (!remote_branch)
739 return -1;
740
741 argv_array_pushl(&cp.args, "merge-base", "--fork-point",
742 remote_branch, curr_branch->name, NULL);
743 cp.no_stdin = 1;
744 cp.no_stderr = 1;
745 cp.git_cmd = 1;
746
747 ret = capture_command(&cp, &sb, GIT_SHA1_HEXSZ);
748 if (ret)
749 goto cleanup;
750
f9b11147 751 ret = get_oid_hex(sb.buf, fork_point);
1678b81e
PT
752 if (ret)
753 goto cleanup;
754
755cleanup:
756 strbuf_release(&sb);
757 return ret ? -1 : 0;
758}
759
760/**
761 * Sets merge_base to the octopus merge base of curr_head, merge_head and
762 * fork_point. Returns 0 if a merge base is found, 1 otherwise.
763 */
f9b11147 764static int get_octopus_merge_base(struct object_id *merge_base,
765 const struct object_id *curr_head,
ee3051bd 766 const struct object_id *merge_head,
f9b11147 767 const struct object_id *fork_point)
1678b81e
PT
768{
769 struct commit_list *revs = NULL, *result;
770
2122f675
SB
771 commit_list_insert(lookup_commit_reference(the_repository, curr_head),
772 &revs);
773 commit_list_insert(lookup_commit_reference(the_repository, merge_head),
774 &revs);
f9b11147 775 if (!is_null_oid(fork_point))
2122f675
SB
776 commit_list_insert(lookup_commit_reference(the_repository, fork_point),
777 &revs);
1678b81e 778
4da72644 779 result = get_octopus_merge_bases(revs);
1678b81e 780 free_commit_list(revs);
4da72644
781 reduce_heads_replace(&result);
782
1678b81e
PT
783 if (!result)
784 return 1;
785
f9b11147 786 oidcpy(merge_base, &result->item->object.oid);
4da72644 787 free_commit_list(result);
1678b81e
PT
788 return 0;
789}
790
791/**
792 * Given the current HEAD SHA1, the merge head returned from git-fetch and the
793 * fork point calculated by get_rebase_fork_point(), runs git-rebase with the
794 * appropriate arguments and returns its exit status.
795 */
f9b11147 796static int run_rebase(const struct object_id *curr_head,
ee3051bd 797 const struct object_id *merge_head,
f9b11147 798 const struct object_id *fork_point)
1678b81e
PT
799{
800 int ret;
f9b11147 801 struct object_id oct_merge_base;
1678b81e
PT
802 struct argv_array args = ARGV_ARRAY_INIT;
803
f9b11147 804 if (!get_octopus_merge_base(&oct_merge_base, curr_head, merge_head, fork_point))
4a7e27e9 805 if (!is_null_oid(fork_point) && oideq(&oct_merge_base, fork_point))
1678b81e
PT
806 fork_point = NULL;
807
808 argv_array_push(&args, "rebase");
809
810 /* Shared options */
811 argv_push_verbosity(&args);
812
813 /* Options passed to git-rebase */
1131ec98
JS
814 if (opt_rebase == REBASE_MERGES)
815 argv_array_push(&args, "--rebase-merges");
816 else if (opt_rebase == REBASE_PRESERVE)
1678b81e 817 argv_array_push(&args, "--preserve-merges");
f5eb87b9
JS
818 else if (opt_rebase == REBASE_INTERACTIVE)
819 argv_array_push(&args, "--interactive");
1678b81e
PT
820 if (opt_diffstat)
821 argv_array_push(&args, opt_diffstat);
822 argv_array_pushv(&args, opt_strategies.argv);
823 argv_array_pushv(&args, opt_strategy_opts.argv);
824 if (opt_gpg_sign)
825 argv_array_push(&args, opt_gpg_sign);
f66398eb
MJ
826 if (opt_autostash == 0)
827 argv_array_push(&args, "--no-autostash");
828 else if (opt_autostash == 1)
829 argv_array_push(&args, "--autostash");
c57e501c
AH
830 if (opt_verify_signatures &&
831 !strcmp(opt_verify_signatures, "--verify-signatures"))
832 warning(_("ignoring --verify-signatures for rebase"));
1678b81e
PT
833
834 argv_array_push(&args, "--onto");
ee3051bd 835 argv_array_push(&args, oid_to_hex(merge_head));
1678b81e 836
f9b11147 837 if (fork_point && !is_null_oid(fork_point))
838 argv_array_push(&args, oid_to_hex(fork_point));
1678b81e 839 else
ee3051bd 840 argv_array_push(&args, oid_to_hex(merge_head));
1678b81e
PT
841
842 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
843 argv_array_clear(&args);
844 return ret;
845}
846
1e1ea69f
PT
847int cmd_pull(int argc, const char **argv, const char *prefix)
848{
f2c5baa1 849 const char *repo, **refspecs;
910650d2 850 struct oid_array merge_heads = OID_ARRAY_INIT;
f9b11147 851 struct object_id orig_head, curr_head;
852 struct object_id rebase_fork_point;
f15e7cf5 853 int autostash;
f2c5baa1 854
41fca098
PT
855 if (!getenv("GIT_REFLOG_ACTION"))
856 set_reflog_message(argc, argv);
857
cad0c692
NMC
858 git_config(git_pull_config, NULL);
859
1e1ea69f
PT
860 argc = parse_options(argc, argv, prefix, pull_options, pull_usage, 0);
861
f2c5baa1
PT
862 parse_repo_refspecs(argc, argv, &repo, &refspecs);
863
a9de9897
PT
864 if (!opt_ff)
865 opt_ff = xstrdup_or_null(config_get_ff());
866
81dbd768
PT
867 if (opt_rebase < 0)
868 opt_rebase = config_get_rebase();
869
4a4cf9e8 870 if (read_cache_unmerged())
8785c425 871 die_resolve_conflict("pull");
4a4cf9e8 872
102de880 873 if (file_exists(git_path_merge_head(the_repository)))
4a4cf9e8
PT
874 die_conclude_merge();
875
f9b11147 876 if (get_oid("HEAD", &orig_head))
877 oidclr(&orig_head);
fe911b8c 878
f66398eb
MJ
879 if (!opt_rebase && opt_autostash != -1)
880 die(_("--[no-]autostash option is only valid with --rebase."));
881
f15e7cf5 882 autostash = config_autostash;
8944969c 883 if (opt_rebase) {
f66398eb
MJ
884 if (opt_autostash != -1)
885 autostash = opt_autostash;
53c76dc0 886
f9b11147 887 if (is_null_oid(&orig_head) && !is_cache_unborn())
8944969c
PT
888 die(_("Updating an unborn branch with changes added to the index."));
889
53c76dc0 890 if (!autostash)
ea63b393 891 require_clean_work_tree(N_("pull with rebase"),
d8cc92ab 892 _("please commit or stash them."), 1, 0);
8944969c 893
f9b11147 894 if (get_rebase_fork_point(&rebase_fork_point, repo, *refspecs))
895 oidclr(&rebase_fork_point);
8944969c 896 }
1678b81e 897
f2c5baa1
PT
898 if (run_fetch(repo, refspecs))
899 return 1;
900
a32975f5
PT
901 if (opt_dry_run)
902 return 0;
903
f9b11147 904 if (get_oid("HEAD", &curr_head))
905 oidclr(&curr_head);
fe911b8c 906
f9b11147 907 if (!is_null_oid(&orig_head) && !is_null_oid(&curr_head) &&
9001dc2a 908 !oideq(&orig_head, &curr_head)) {
fe911b8c
PT
909 /*
910 * The fetch involved updating the current branch.
911 *
912 * The working tree and the index file are still based on
913 * orig_head commit, but we are merging into curr_head.
914 * Update the working tree to match curr_head.
915 */
916
917 warning(_("fetch updated the current branch head.\n"
918 "fast-forwarding your working tree from\n"
f9b11147 919 "commit %s."), oid_to_hex(&orig_head));
fe911b8c 920
7e196c3a
NTND
921 if (checkout_fast_forward(the_repository, &orig_head,
922 &curr_head, 0))
fe911b8c
PT
923 die(_("Cannot fast-forward your working tree.\n"
924 "After making sure that you saved anything precious from\n"
925 "$ git diff %s\n"
926 "output, run\n"
927 "$ git reset --hard\n"
f9b11147 928 "to recover."), oid_to_hex(&orig_head));
fe911b8c
PT
929 }
930
44c175c7
PT
931 get_merge_heads(&merge_heads);
932
933 if (!merge_heads.nr)
934 die_no_merge_candidates(repo, refspecs);
935
f9b11147 936 if (is_null_oid(&orig_head)) {
49ec402d
PT
937 if (merge_heads.nr > 1)
938 die(_("Cannot merge multiple branches into empty head."));
ee3051bd 939 return pull_into_void(merge_heads.oid, &curr_head);
33b842a1
JH
940 }
941 if (opt_rebase && merge_heads.nr > 1)
942 die(_("Cannot rebase onto multiple branches."));
943
944 if (opt_rebase) {
a6d7eb2c
SB
945 int ret = 0;
946 if ((recurse_submodules == RECURSE_SUBMODULES_ON ||
947 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND) &&
6245b98b 948 submodule_touches_in_range(the_repository, &rebase_fork_point, &curr_head))
a6d7eb2c 949 die(_("cannot rebase with locally recorded submodule modifications"));
f15e7cf5
TB
950 if (!autostash) {
951 struct commit_list *list = NULL;
952 struct commit *merge_head, *head;
953
2122f675
SB
954 head = lookup_commit_reference(the_repository,
955 &orig_head);
f15e7cf5 956 commit_list_insert(head, &list);
2122f675
SB
957 merge_head = lookup_commit_reference(the_repository,
958 &merge_heads.oid[0]);
f15e7cf5
TB
959 if (is_descendant_of(merge_head, list)) {
960 /* we can fast-forward this without invoking rebase */
961 opt_ff = "--ff-only";
a6d7eb2c 962 ret = run_merge();
f15e7cf5 963 }
33b842a1 964 }
a6d7eb2c
SB
965 ret = run_rebase(&curr_head, merge_heads.oid, &rebase_fork_point);
966
967 if (!ret && (recurse_submodules == RECURSE_SUBMODULES_ON ||
968 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND))
969 ret = rebase_submodules();
970
971 return ret;
33b842a1 972 } else {
a6d7eb2c
SB
973 int ret = run_merge();
974 if (!ret && (recurse_submodules == RECURSE_SUBMODULES_ON ||
975 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND))
976 ret = update_submodules();
977 return ret;
33b842a1 978 }
1e1ea69f 979}