Merge branch 'ab/refspec-init-fix'
[git.git] / builtin / pull.c
blobfe002a72f8ac7f1020a951769641f5f4b39f23b3
1 /*
2 * Builtin "git pull"
4 * Based on git-pull.sh by Junio C Hamano
6 * Fetch one or more remote refs and merge it/them into the current HEAD.
7 */
8 #include "cache.h"
9 #include "config.h"
10 #include "builtin.h"
11 #include "parse-options.h"
12 #include "exec-cmd.h"
13 #include "run-command.h"
14 #include "sha1-array.h"
15 #include "remote.h"
16 #include "dir.h"
17 #include "refs.h"
18 #include "refspec.h"
19 #include "revision.h"
20 #include "submodule.h"
21 #include "submodule-config.h"
22 #include "tempfile.h"
23 #include "lockfile.h"
24 #include "wt-status.h"
26 enum rebase_type {
27 REBASE_INVALID = -1,
28 REBASE_FALSE = 0,
29 REBASE_TRUE,
30 REBASE_PRESERVE,
31 REBASE_MERGES,
32 REBASE_INTERACTIVE
35 /**
36 * Parses the value of --rebase. If value is a false value, returns
37 * REBASE_FALSE. If value is a true value, returns REBASE_TRUE. If value is
38 * "merges", returns REBASE_MERGES. If value is "preserve", returns
39 * REBASE_PRESERVE. If value is a invalid value, dies with a fatal error if
40 * fatal is true, otherwise returns REBASE_INVALID.
42 static enum rebase_type parse_config_rebase(const char *key, const char *value,
43 int fatal)
45 int v = git_parse_maybe_bool(value);
47 if (!v)
48 return REBASE_FALSE;
49 else if (v > 0)
50 return REBASE_TRUE;
51 else if (!strcmp(value, "preserve"))
52 return REBASE_PRESERVE;
53 else if (!strcmp(value, "merges"))
54 return REBASE_MERGES;
55 else if (!strcmp(value, "interactive"))
56 return REBASE_INTERACTIVE;
58 if (fatal)
59 die(_("Invalid value for %s: %s"), key, value);
60 else
61 error(_("Invalid value for %s: %s"), key, value);
63 return REBASE_INVALID;
66 /**
67 * Callback for --rebase, which parses arg with parse_config_rebase().
69 static int parse_opt_rebase(const struct option *opt, const char *arg, int unset)
71 enum rebase_type *value = opt->value;
73 if (arg)
74 *value = parse_config_rebase("--rebase", arg, 0);
75 else
76 *value = unset ? REBASE_FALSE : REBASE_TRUE;
77 return *value == REBASE_INVALID ? -1 : 0;
80 static const char * const pull_usage[] = {
81 N_("git pull [<options>] [<repository> [<refspec>...]]"),
82 NULL
85 /* Shared options */
86 static int opt_verbosity;
87 static char *opt_progress;
88 static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
90 /* Options passed to git-merge or git-rebase */
91 static enum rebase_type opt_rebase = -1;
92 static char *opt_diffstat;
93 static char *opt_log;
94 static char *opt_signoff;
95 static char *opt_squash;
96 static char *opt_commit;
97 static char *opt_edit;
98 static char *opt_ff;
99 static char *opt_verify_signatures;
100 static int opt_autostash = -1;
101 static int config_autostash;
102 static struct argv_array opt_strategies = ARGV_ARRAY_INIT;
103 static struct argv_array opt_strategy_opts = ARGV_ARRAY_INIT;
104 static char *opt_gpg_sign;
105 static int opt_allow_unrelated_histories;
107 /* Options passed to git-fetch */
108 static char *opt_all;
109 static char *opt_append;
110 static char *opt_upload_pack;
111 static int opt_force;
112 static char *opt_tags;
113 static char *opt_prune;
114 static char *max_children;
115 static int opt_dry_run;
116 static char *opt_keep;
117 static char *opt_depth;
118 static char *opt_unshallow;
119 static char *opt_update_shallow;
120 static char *opt_refmap;
121 static char *opt_ipv4;
122 static char *opt_ipv6;
124 static struct option pull_options[] = {
125 /* Shared options */
126 OPT__VERBOSITY(&opt_verbosity),
127 OPT_PASSTHRU(0, "progress", &opt_progress, NULL,
128 N_("force progress reporting"),
129 PARSE_OPT_NOARG),
130 { OPTION_CALLBACK, 0, "recurse-submodules",
131 &recurse_submodules, N_("on-demand"),
132 N_("control for recursive fetching of submodules"),
133 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
135 /* Options passed to git-merge or git-rebase */
136 OPT_GROUP(N_("Options related to merging")),
137 { OPTION_CALLBACK, 'r', "rebase", &opt_rebase,
138 "false|true|merges|preserve|interactive",
139 N_("incorporate changes by rebasing rather than merging"),
140 PARSE_OPT_OPTARG, parse_opt_rebase },
141 OPT_PASSTHRU('n', NULL, &opt_diffstat, NULL,
142 N_("do not show a diffstat at the end of the merge"),
143 PARSE_OPT_NOARG | PARSE_OPT_NONEG),
144 OPT_PASSTHRU(0, "stat", &opt_diffstat, NULL,
145 N_("show a diffstat at the end of the merge"),
146 PARSE_OPT_NOARG),
147 OPT_PASSTHRU(0, "summary", &opt_diffstat, NULL,
148 N_("(synonym to --stat)"),
149 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN),
150 OPT_PASSTHRU(0, "log", &opt_log, N_("n"),
151 N_("add (at most <n>) entries from shortlog to merge commit message"),
152 PARSE_OPT_OPTARG),
153 OPT_PASSTHRU(0, "signoff", &opt_signoff, NULL,
154 N_("add Signed-off-by:"),
155 PARSE_OPT_OPTARG),
156 OPT_PASSTHRU(0, "squash", &opt_squash, NULL,
157 N_("create a single commit instead of doing a merge"),
158 PARSE_OPT_NOARG),
159 OPT_PASSTHRU(0, "commit", &opt_commit, NULL,
160 N_("perform a commit if the merge succeeds (default)"),
161 PARSE_OPT_NOARG),
162 OPT_PASSTHRU(0, "edit", &opt_edit, NULL,
163 N_("edit message before committing"),
164 PARSE_OPT_NOARG),
165 OPT_PASSTHRU(0, "ff", &opt_ff, NULL,
166 N_("allow fast-forward"),
167 PARSE_OPT_NOARG),
168 OPT_PASSTHRU(0, "ff-only", &opt_ff, NULL,
169 N_("abort if fast-forward is not possible"),
170 PARSE_OPT_NOARG | PARSE_OPT_NONEG),
171 OPT_PASSTHRU(0, "verify-signatures", &opt_verify_signatures, NULL,
172 N_("verify that the named commit has a valid GPG signature"),
173 PARSE_OPT_NOARG),
174 OPT_BOOL(0, "autostash", &opt_autostash,
175 N_("automatically stash/stash pop before and after rebase")),
176 OPT_PASSTHRU_ARGV('s', "strategy", &opt_strategies, N_("strategy"),
177 N_("merge strategy to use"),
179 OPT_PASSTHRU_ARGV('X', "strategy-option", &opt_strategy_opts,
180 N_("option=value"),
181 N_("option for selected merge strategy"),
183 OPT_PASSTHRU('S', "gpg-sign", &opt_gpg_sign, N_("key-id"),
184 N_("GPG sign commit"),
185 PARSE_OPT_OPTARG),
186 OPT_SET_INT(0, "allow-unrelated-histories",
187 &opt_allow_unrelated_histories,
188 N_("allow merging unrelated histories"), 1),
190 /* Options passed to git-fetch */
191 OPT_GROUP(N_("Options related to fetching")),
192 OPT_PASSTHRU(0, "all", &opt_all, NULL,
193 N_("fetch from all remotes"),
194 PARSE_OPT_NOARG),
195 OPT_PASSTHRU('a', "append", &opt_append, NULL,
196 N_("append to .git/FETCH_HEAD instead of overwriting"),
197 PARSE_OPT_NOARG),
198 OPT_PASSTHRU(0, "upload-pack", &opt_upload_pack, N_("path"),
199 N_("path to upload pack on remote end"),
201 OPT__FORCE(&opt_force, N_("force overwrite of local branch"), 0),
202 OPT_PASSTHRU('t', "tags", &opt_tags, NULL,
203 N_("fetch all tags and associated objects"),
204 PARSE_OPT_NOARG),
205 OPT_PASSTHRU('p', "prune", &opt_prune, NULL,
206 N_("prune remote-tracking branches no longer on remote"),
207 PARSE_OPT_NOARG),
208 OPT_PASSTHRU('j', "jobs", &max_children, N_("n"),
209 N_("number of submodules pulled in parallel"),
210 PARSE_OPT_OPTARG),
211 OPT_BOOL(0, "dry-run", &opt_dry_run,
212 N_("dry run")),
213 OPT_PASSTHRU('k', "keep", &opt_keep, NULL,
214 N_("keep downloaded pack"),
215 PARSE_OPT_NOARG),
216 OPT_PASSTHRU(0, "depth", &opt_depth, N_("depth"),
217 N_("deepen history of shallow clone"),
219 OPT_PASSTHRU(0, "unshallow", &opt_unshallow, NULL,
220 N_("convert to a complete repository"),
221 PARSE_OPT_NONEG | PARSE_OPT_NOARG),
222 OPT_PASSTHRU(0, "update-shallow", &opt_update_shallow, NULL,
223 N_("accept refs that update .git/shallow"),
224 PARSE_OPT_NOARG),
225 OPT_PASSTHRU(0, "refmap", &opt_refmap, N_("refmap"),
226 N_("specify fetch refmap"),
227 PARSE_OPT_NONEG),
228 OPT_PASSTHRU('4', "ipv4", &opt_ipv4, NULL,
229 N_("use IPv4 addresses only"),
230 PARSE_OPT_NOARG),
231 OPT_PASSTHRU('6', "ipv6", &opt_ipv6, NULL,
232 N_("use IPv6 addresses only"),
233 PARSE_OPT_NOARG),
235 OPT_END()
239 * Pushes "-q" or "-v" switches into arr to match the opt_verbosity level.
241 static void argv_push_verbosity(struct argv_array *arr)
243 int verbosity;
245 for (verbosity = opt_verbosity; verbosity > 0; verbosity--)
246 argv_array_push(arr, "-v");
248 for (verbosity = opt_verbosity; verbosity < 0; verbosity++)
249 argv_array_push(arr, "-q");
253 * Pushes "-f" switches into arr to match the opt_force level.
255 static void argv_push_force(struct argv_array *arr)
257 int force = opt_force;
258 while (force-- > 0)
259 argv_array_push(arr, "-f");
263 * Sets the GIT_REFLOG_ACTION environment variable to the concatenation of argv
265 static void set_reflog_message(int argc, const char **argv)
267 int i;
268 struct strbuf msg = STRBUF_INIT;
270 for (i = 0; i < argc; i++) {
271 if (i)
272 strbuf_addch(&msg, ' ');
273 strbuf_addstr(&msg, argv[i]);
276 setenv("GIT_REFLOG_ACTION", msg.buf, 0);
278 strbuf_release(&msg);
282 * If pull.ff is unset, returns NULL. If pull.ff is "true", returns "--ff". If
283 * pull.ff is "false", returns "--no-ff". If pull.ff is "only", returns
284 * "--ff-only". Otherwise, if pull.ff is set to an invalid value, die with an
285 * error.
287 static const char *config_get_ff(void)
289 const char *value;
291 if (git_config_get_value("pull.ff", &value))
292 return NULL;
294 switch (git_parse_maybe_bool(value)) {
295 case 0:
296 return "--no-ff";
297 case 1:
298 return "--ff";
301 if (!strcmp(value, "only"))
302 return "--ff-only";
304 die(_("Invalid value for pull.ff: %s"), value);
308 * Returns the default configured value for --rebase. It first looks for the
309 * value of "branch.$curr_branch.rebase", where $curr_branch is the current
310 * branch, and if HEAD is detached or the configuration key does not exist,
311 * looks for the value of "pull.rebase". If both configuration keys do not
312 * exist, returns REBASE_FALSE.
314 static enum rebase_type config_get_rebase(void)
316 struct branch *curr_branch = branch_get("HEAD");
317 const char *value;
319 if (curr_branch) {
320 char *key = xstrfmt("branch.%s.rebase", curr_branch->name);
322 if (!git_config_get_value(key, &value)) {
323 enum rebase_type ret = parse_config_rebase(key, value, 1);
324 free(key);
325 return ret;
328 free(key);
331 if (!git_config_get_value("pull.rebase", &value))
332 return parse_config_rebase("pull.rebase", value, 1);
334 return REBASE_FALSE;
338 * Read config variables.
340 static int git_pull_config(const char *var, const char *value, void *cb)
342 if (!strcmp(var, "rebase.autostash")) {
343 config_autostash = git_config_bool(var, value);
344 return 0;
345 } else if (!strcmp(var, "submodule.recurse")) {
346 recurse_submodules = git_config_bool(var, value) ?
347 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
348 return 0;
350 return git_default_config(var, value, cb);
354 * Appends merge candidates from FETCH_HEAD that are not marked not-for-merge
355 * into merge_heads.
357 static void get_merge_heads(struct oid_array *merge_heads)
359 const char *filename = git_path_fetch_head();
360 FILE *fp;
361 struct strbuf sb = STRBUF_INIT;
362 struct object_id oid;
364 fp = xfopen(filename, "r");
365 while (strbuf_getline_lf(&sb, fp) != EOF) {
366 if (get_oid_hex(sb.buf, &oid))
367 continue; /* invalid line: does not start with SHA1 */
368 if (starts_with(sb.buf + GIT_SHA1_HEXSZ, "\tnot-for-merge\t"))
369 continue; /* ref is not-for-merge */
370 oid_array_append(merge_heads, &oid);
372 fclose(fp);
373 strbuf_release(&sb);
377 * Used by die_no_merge_candidates() as a for_each_remote() callback to
378 * retrieve the name of the remote if the repository only has one remote.
380 static int get_only_remote(struct remote *remote, void *cb_data)
382 const char **remote_name = cb_data;
384 if (*remote_name)
385 return -1;
387 *remote_name = remote->name;
388 return 0;
392 * Dies with the appropriate reason for why there are no merge candidates:
394 * 1. We fetched from a specific remote, and a refspec was given, but it ended
395 * up not fetching anything. This is usually because the user provided a
396 * wildcard refspec which had no matches on the remote end.
398 * 2. We fetched from a non-default remote, but didn't specify a branch to
399 * merge. We can't use the configured one because it applies to the default
400 * remote, thus the user must specify the branches to merge.
402 * 3. We fetched from the branch's or repo's default remote, but:
404 * a. We are not on a branch, so there will never be a configured branch to
405 * merge with.
407 * b. We are on a branch, but there is no configured branch to merge with.
409 * 4. We fetched from the branch's or repo's default remote, but the configured
410 * branch to merge didn't get fetched. (Either it doesn't exist, or wasn't
411 * part of the configured fetch refspec.)
413 static void NORETURN die_no_merge_candidates(const char *repo, const char **refspecs)
415 struct branch *curr_branch = branch_get("HEAD");
416 const char *remote = curr_branch ? curr_branch->remote_name : NULL;
418 if (*refspecs) {
419 if (opt_rebase)
420 fprintf_ln(stderr, _("There is no candidate for rebasing against among the refs that you just fetched."));
421 else
422 fprintf_ln(stderr, _("There are no candidates for merging among the refs that you just fetched."));
423 fprintf_ln(stderr, _("Generally this means that you provided a wildcard refspec which had no\n"
424 "matches on the remote end."));
425 } else if (repo && curr_branch && (!remote || strcmp(repo, remote))) {
426 fprintf_ln(stderr, _("You asked to pull from the remote '%s', but did not specify\n"
427 "a branch. Because this is not the default configured remote\n"
428 "for your current branch, you must specify a branch on the command line."),
429 repo);
430 } else if (!curr_branch) {
431 fprintf_ln(stderr, _("You are not currently on a branch."));
432 if (opt_rebase)
433 fprintf_ln(stderr, _("Please specify which branch you want to rebase against."));
434 else
435 fprintf_ln(stderr, _("Please specify which branch you want to merge with."));
436 fprintf_ln(stderr, _("See git-pull(1) for details."));
437 fprintf(stderr, "\n");
438 fprintf_ln(stderr, " git pull %s %s", _("<remote>"), _("<branch>"));
439 fprintf(stderr, "\n");
440 } else if (!curr_branch->merge_nr) {
441 const char *remote_name = NULL;
443 if (for_each_remote(get_only_remote, &remote_name) || !remote_name)
444 remote_name = _("<remote>");
446 fprintf_ln(stderr, _("There is no tracking information for the current branch."));
447 if (opt_rebase)
448 fprintf_ln(stderr, _("Please specify which branch you want to rebase against."));
449 else
450 fprintf_ln(stderr, _("Please specify which branch you want to merge with."));
451 fprintf_ln(stderr, _("See git-pull(1) for details."));
452 fprintf(stderr, "\n");
453 fprintf_ln(stderr, " git pull %s %s", _("<remote>"), _("<branch>"));
454 fprintf(stderr, "\n");
455 fprintf_ln(stderr, _("If you wish to set tracking information for this branch you can do so with:"));
456 fprintf(stderr, "\n");
457 fprintf_ln(stderr, " git branch --set-upstream-to=%s/%s %s\n",
458 remote_name, _("<branch>"), curr_branch->name);
459 } else
460 fprintf_ln(stderr, _("Your configuration specifies to merge with the ref '%s'\n"
461 "from the remote, but no such ref was fetched."),
462 *curr_branch->merge_name);
463 exit(1);
467 * Parses argv into [<repo> [<refspecs>...]], returning their values in `repo`
468 * as a string and `refspecs` as a null-terminated array of strings. If `repo`
469 * is not provided in argv, it is set to NULL.
471 static void parse_repo_refspecs(int argc, const char **argv, const char **repo,
472 const char ***refspecs)
474 if (argc > 0) {
475 *repo = *argv++;
476 argc--;
477 } else
478 *repo = NULL;
479 *refspecs = argv;
483 * Runs git-fetch, returning its exit status. `repo` and `refspecs` are the
484 * repository and refspecs to fetch, or NULL if they are not provided.
486 static int run_fetch(const char *repo, const char **refspecs)
488 struct argv_array args = ARGV_ARRAY_INIT;
489 int ret;
491 argv_array_pushl(&args, "fetch", "--update-head-ok", NULL);
493 /* Shared options */
494 argv_push_verbosity(&args);
495 if (opt_progress)
496 argv_array_push(&args, opt_progress);
498 /* Options passed to git-fetch */
499 if (opt_all)
500 argv_array_push(&args, opt_all);
501 if (opt_append)
502 argv_array_push(&args, opt_append);
503 if (opt_upload_pack)
504 argv_array_push(&args, opt_upload_pack);
505 argv_push_force(&args);
506 if (opt_tags)
507 argv_array_push(&args, opt_tags);
508 if (opt_prune)
509 argv_array_push(&args, opt_prune);
510 if (recurse_submodules != RECURSE_SUBMODULES_DEFAULT)
511 switch (recurse_submodules) {
512 case RECURSE_SUBMODULES_ON:
513 argv_array_push(&args, "--recurse-submodules=on");
514 break;
515 case RECURSE_SUBMODULES_OFF:
516 argv_array_push(&args, "--recurse-submodules=no");
517 break;
518 case RECURSE_SUBMODULES_ON_DEMAND:
519 argv_array_push(&args, "--recurse-submodules=on-demand");
520 break;
521 default:
522 BUG("submodule recursion option not understood");
524 if (max_children)
525 argv_array_push(&args, max_children);
526 if (opt_dry_run)
527 argv_array_push(&args, "--dry-run");
528 if (opt_keep)
529 argv_array_push(&args, opt_keep);
530 if (opt_depth)
531 argv_array_push(&args, opt_depth);
532 if (opt_unshallow)
533 argv_array_push(&args, opt_unshallow);
534 if (opt_update_shallow)
535 argv_array_push(&args, opt_update_shallow);
536 if (opt_refmap)
537 argv_array_push(&args, opt_refmap);
538 if (opt_ipv4)
539 argv_array_push(&args, opt_ipv4);
540 if (opt_ipv6)
541 argv_array_push(&args, opt_ipv6);
543 if (repo) {
544 argv_array_push(&args, repo);
545 argv_array_pushv(&args, refspecs);
546 } else if (*refspecs)
547 BUG("refspecs without repo?");
548 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
549 argv_array_clear(&args);
550 return ret;
554 * "Pulls into void" by branching off merge_head.
556 static int pull_into_void(const struct object_id *merge_head,
557 const struct object_id *curr_head)
560 * Two-way merge: we treat the index as based on an empty tree,
561 * and try to fast-forward to HEAD. This ensures we will not lose
562 * index/worktree changes that the user already made on the unborn
563 * branch.
565 if (checkout_fast_forward(the_hash_algo->empty_tree, merge_head, 0))
566 return 1;
568 if (update_ref("initial pull", "HEAD", merge_head, curr_head, 0, UPDATE_REFS_DIE_ON_ERR))
569 return 1;
571 return 0;
574 static int rebase_submodules(void)
576 struct child_process cp = CHILD_PROCESS_INIT;
578 cp.git_cmd = 1;
579 cp.no_stdin = 1;
580 argv_array_pushl(&cp.args, "submodule", "update",
581 "--recursive", "--rebase", NULL);
582 argv_push_verbosity(&cp.args);
584 return run_command(&cp);
587 static int update_submodules(void)
589 struct child_process cp = CHILD_PROCESS_INIT;
591 cp.git_cmd = 1;
592 cp.no_stdin = 1;
593 argv_array_pushl(&cp.args, "submodule", "update",
594 "--recursive", "--checkout", NULL);
595 argv_push_verbosity(&cp.args);
597 return run_command(&cp);
601 * Runs git-merge, returning its exit status.
603 static int run_merge(void)
605 int ret;
606 struct argv_array args = ARGV_ARRAY_INIT;
608 argv_array_pushl(&args, "merge", NULL);
610 /* Shared options */
611 argv_push_verbosity(&args);
612 if (opt_progress)
613 argv_array_push(&args, opt_progress);
615 /* Options passed to git-merge */
616 if (opt_diffstat)
617 argv_array_push(&args, opt_diffstat);
618 if (opt_log)
619 argv_array_push(&args, opt_log);
620 if (opt_signoff)
621 argv_array_push(&args, opt_signoff);
622 if (opt_squash)
623 argv_array_push(&args, opt_squash);
624 if (opt_commit)
625 argv_array_push(&args, opt_commit);
626 if (opt_edit)
627 argv_array_push(&args, opt_edit);
628 if (opt_ff)
629 argv_array_push(&args, opt_ff);
630 if (opt_verify_signatures)
631 argv_array_push(&args, opt_verify_signatures);
632 argv_array_pushv(&args, opt_strategies.argv);
633 argv_array_pushv(&args, opt_strategy_opts.argv);
634 if (opt_gpg_sign)
635 argv_array_push(&args, opt_gpg_sign);
636 if (opt_allow_unrelated_histories > 0)
637 argv_array_push(&args, "--allow-unrelated-histories");
639 argv_array_push(&args, "FETCH_HEAD");
640 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
641 argv_array_clear(&args);
642 return ret;
646 * Returns remote's upstream branch for the current branch. If remote is NULL,
647 * the current branch's configured default remote is used. Returns NULL if
648 * `remote` does not name a valid remote, HEAD does not point to a branch,
649 * remote is not the branch's configured remote or the branch does not have any
650 * configured upstream branch.
652 static const char *get_upstream_branch(const char *remote)
654 struct remote *rm;
655 struct branch *curr_branch;
656 const char *curr_branch_remote;
658 rm = remote_get(remote);
659 if (!rm)
660 return NULL;
662 curr_branch = branch_get("HEAD");
663 if (!curr_branch)
664 return NULL;
666 curr_branch_remote = remote_for_branch(curr_branch, NULL);
667 assert(curr_branch_remote);
669 if (strcmp(curr_branch_remote, rm->name))
670 return NULL;
672 return branch_get_upstream(curr_branch, NULL);
676 * Derives the remote-tracking branch from the remote and refspec.
678 * FIXME: The current implementation assumes the default mapping of
679 * refs/heads/<branch_name> to refs/remotes/<remote_name>/<branch_name>.
681 static const char *get_tracking_branch(const char *remote, const char *refspec)
683 struct refspec_item spec;
684 const char *spec_src;
685 const char *merge_branch;
687 refspec_item_init_or_die(&spec, refspec, REFSPEC_FETCH);
688 spec_src = spec.src;
689 if (!*spec_src || !strcmp(spec_src, "HEAD"))
690 spec_src = "HEAD";
691 else if (skip_prefix(spec_src, "heads/", &spec_src))
693 else if (skip_prefix(spec_src, "refs/heads/", &spec_src))
695 else if (starts_with(spec_src, "refs/") ||
696 starts_with(spec_src, "tags/") ||
697 starts_with(spec_src, "remotes/"))
698 spec_src = "";
700 if (*spec_src) {
701 if (!strcmp(remote, "."))
702 merge_branch = mkpath("refs/heads/%s", spec_src);
703 else
704 merge_branch = mkpath("refs/remotes/%s/%s", remote, spec_src);
705 } else
706 merge_branch = NULL;
708 refspec_item_clear(&spec);
709 return merge_branch;
713 * Given the repo and refspecs, sets fork_point to the point at which the
714 * current branch forked from its remote-tracking branch. Returns 0 on success,
715 * -1 on failure.
717 static int get_rebase_fork_point(struct object_id *fork_point, const char *repo,
718 const char *refspec)
720 int ret;
721 struct branch *curr_branch;
722 const char *remote_branch;
723 struct child_process cp = CHILD_PROCESS_INIT;
724 struct strbuf sb = STRBUF_INIT;
726 curr_branch = branch_get("HEAD");
727 if (!curr_branch)
728 return -1;
730 if (refspec)
731 remote_branch = get_tracking_branch(repo, refspec);
732 else
733 remote_branch = get_upstream_branch(repo);
735 if (!remote_branch)
736 return -1;
738 argv_array_pushl(&cp.args, "merge-base", "--fork-point",
739 remote_branch, curr_branch->name, NULL);
740 cp.no_stdin = 1;
741 cp.no_stderr = 1;
742 cp.git_cmd = 1;
744 ret = capture_command(&cp, &sb, GIT_SHA1_HEXSZ);
745 if (ret)
746 goto cleanup;
748 ret = get_oid_hex(sb.buf, fork_point);
749 if (ret)
750 goto cleanup;
752 cleanup:
753 strbuf_release(&sb);
754 return ret ? -1 : 0;
758 * Sets merge_base to the octopus merge base of curr_head, merge_head and
759 * fork_point. Returns 0 if a merge base is found, 1 otherwise.
761 static int get_octopus_merge_base(struct object_id *merge_base,
762 const struct object_id *curr_head,
763 const struct object_id *merge_head,
764 const struct object_id *fork_point)
766 struct commit_list *revs = NULL, *result;
768 commit_list_insert(lookup_commit_reference(curr_head), &revs);
769 commit_list_insert(lookup_commit_reference(merge_head), &revs);
770 if (!is_null_oid(fork_point))
771 commit_list_insert(lookup_commit_reference(fork_point), &revs);
773 result = get_octopus_merge_bases(revs);
774 free_commit_list(revs);
775 reduce_heads_replace(&result);
777 if (!result)
778 return 1;
780 oidcpy(merge_base, &result->item->object.oid);
781 free_commit_list(result);
782 return 0;
786 * Given the current HEAD SHA1, the merge head returned from git-fetch and the
787 * fork point calculated by get_rebase_fork_point(), runs git-rebase with the
788 * appropriate arguments and returns its exit status.
790 static int run_rebase(const struct object_id *curr_head,
791 const struct object_id *merge_head,
792 const struct object_id *fork_point)
794 int ret;
795 struct object_id oct_merge_base;
796 struct argv_array args = ARGV_ARRAY_INIT;
798 if (!get_octopus_merge_base(&oct_merge_base, curr_head, merge_head, fork_point))
799 if (!is_null_oid(fork_point) && !oidcmp(&oct_merge_base, fork_point))
800 fork_point = NULL;
802 argv_array_push(&args, "rebase");
804 /* Shared options */
805 argv_push_verbosity(&args);
807 /* Options passed to git-rebase */
808 if (opt_rebase == REBASE_MERGES)
809 argv_array_push(&args, "--rebase-merges");
810 else if (opt_rebase == REBASE_PRESERVE)
811 argv_array_push(&args, "--preserve-merges");
812 else if (opt_rebase == REBASE_INTERACTIVE)
813 argv_array_push(&args, "--interactive");
814 if (opt_diffstat)
815 argv_array_push(&args, opt_diffstat);
816 argv_array_pushv(&args, opt_strategies.argv);
817 argv_array_pushv(&args, opt_strategy_opts.argv);
818 if (opt_gpg_sign)
819 argv_array_push(&args, opt_gpg_sign);
820 if (opt_autostash == 0)
821 argv_array_push(&args, "--no-autostash");
822 else if (opt_autostash == 1)
823 argv_array_push(&args, "--autostash");
824 if (opt_verify_signatures &&
825 !strcmp(opt_verify_signatures, "--verify-signatures"))
826 warning(_("ignoring --verify-signatures for rebase"));
828 argv_array_push(&args, "--onto");
829 argv_array_push(&args, oid_to_hex(merge_head));
831 if (fork_point && !is_null_oid(fork_point))
832 argv_array_push(&args, oid_to_hex(fork_point));
833 else
834 argv_array_push(&args, oid_to_hex(merge_head));
836 ret = run_command_v_opt(args.argv, RUN_GIT_CMD);
837 argv_array_clear(&args);
838 return ret;
841 int cmd_pull(int argc, const char **argv, const char *prefix)
843 const char *repo, **refspecs;
844 struct oid_array merge_heads = OID_ARRAY_INIT;
845 struct object_id orig_head, curr_head;
846 struct object_id rebase_fork_point;
847 int autostash;
849 if (!getenv("GIT_REFLOG_ACTION"))
850 set_reflog_message(argc, argv);
852 git_config(git_pull_config, NULL);
854 argc = parse_options(argc, argv, prefix, pull_options, pull_usage, 0);
856 parse_repo_refspecs(argc, argv, &repo, &refspecs);
858 if (!opt_ff)
859 opt_ff = xstrdup_or_null(config_get_ff());
861 if (opt_rebase < 0)
862 opt_rebase = config_get_rebase();
864 if (read_cache_unmerged())
865 die_resolve_conflict("pull");
867 if (file_exists(git_path_merge_head()))
868 die_conclude_merge();
870 if (get_oid("HEAD", &orig_head))
871 oidclr(&orig_head);
873 if (!opt_rebase && opt_autostash != -1)
874 die(_("--[no-]autostash option is only valid with --rebase."));
876 autostash = config_autostash;
877 if (opt_rebase) {
878 if (opt_autostash != -1)
879 autostash = opt_autostash;
881 if (is_null_oid(&orig_head) && !is_cache_unborn())
882 die(_("Updating an unborn branch with changes added to the index."));
884 if (!autostash)
885 require_clean_work_tree(N_("pull with rebase"),
886 _("please commit or stash them."), 1, 0);
888 if (get_rebase_fork_point(&rebase_fork_point, repo, *refspecs))
889 oidclr(&rebase_fork_point);
892 if (run_fetch(repo, refspecs))
893 return 1;
895 if (opt_dry_run)
896 return 0;
898 if (get_oid("HEAD", &curr_head))
899 oidclr(&curr_head);
901 if (!is_null_oid(&orig_head) && !is_null_oid(&curr_head) &&
902 oidcmp(&orig_head, &curr_head)) {
904 * The fetch involved updating the current branch.
906 * The working tree and the index file are still based on
907 * orig_head commit, but we are merging into curr_head.
908 * Update the working tree to match curr_head.
911 warning(_("fetch updated the current branch head.\n"
912 "fast-forwarding your working tree from\n"
913 "commit %s."), oid_to_hex(&orig_head));
915 if (checkout_fast_forward(&orig_head, &curr_head, 0))
916 die(_("Cannot fast-forward your working tree.\n"
917 "After making sure that you saved anything precious from\n"
918 "$ git diff %s\n"
919 "output, run\n"
920 "$ git reset --hard\n"
921 "to recover."), oid_to_hex(&orig_head));
924 get_merge_heads(&merge_heads);
926 if (!merge_heads.nr)
927 die_no_merge_candidates(repo, refspecs);
929 if (is_null_oid(&orig_head)) {
930 if (merge_heads.nr > 1)
931 die(_("Cannot merge multiple branches into empty head."));
932 return pull_into_void(merge_heads.oid, &curr_head);
934 if (opt_rebase && merge_heads.nr > 1)
935 die(_("Cannot rebase onto multiple branches."));
937 if (opt_rebase) {
938 int ret = 0;
939 if ((recurse_submodules == RECURSE_SUBMODULES_ON ||
940 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND) &&
941 submodule_touches_in_range(&rebase_fork_point, &curr_head))
942 die(_("cannot rebase with locally recorded submodule modifications"));
943 if (!autostash) {
944 struct commit_list *list = NULL;
945 struct commit *merge_head, *head;
947 head = lookup_commit_reference(&orig_head);
948 commit_list_insert(head, &list);
949 merge_head = lookup_commit_reference(&merge_heads.oid[0]);
950 if (is_descendant_of(merge_head, list)) {
951 /* we can fast-forward this without invoking rebase */
952 opt_ff = "--ff-only";
953 ret = run_merge();
956 ret = run_rebase(&curr_head, merge_heads.oid, &rebase_fork_point);
958 if (!ret && (recurse_submodules == RECURSE_SUBMODULES_ON ||
959 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND))
960 ret = rebase_submodules();
962 return ret;
963 } else {
964 int ret = run_merge();
965 if (!ret && (recurse_submodules == RECURSE_SUBMODULES_ON ||
966 recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND))
967 ret = update_submodules();
968 return ret;