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.
8 #define USE_THE_INDEX_COMPATIBILITY_MACROS
12 #include "parse-options.h"
14 #include "run-command.h"
15 #include "sha1-array.h"
21 #include "submodule.h"
22 #include "submodule-config.h"
25 #include "wt-status.h"
26 #include "commit-reach.h"
27 #include "sequencer.h"
39 * Parses the value of --rebase. If value is a false value, returns
40 * REBASE_FALSE. If value is a true value, returns REBASE_TRUE. If value is
41 * "merges", returns REBASE_MERGES. If value is "preserve", returns
42 * REBASE_PRESERVE. If value is a invalid value, dies with a fatal error if
43 * fatal is true, otherwise returns REBASE_INVALID.
45 static enum rebase_type
parse_config_rebase(const char *key
, const char *value
,
48 int v
= git_parse_maybe_bool(value
);
54 else if (!strcmp(value
, "preserve") || !strcmp(value
, "p"))
55 return REBASE_PRESERVE
;
56 else if (!strcmp(value
, "merges") || !strcmp(value
, "m"))
58 else if (!strcmp(value
, "interactive") || !strcmp(value
, "i"))
59 return REBASE_INTERACTIVE
;
61 * Please update _git_config() in git-completion.bash when you
62 * add new rebase modes.
66 die(_("Invalid value for %s: %s"), key
, value
);
68 error(_("Invalid value for %s: %s"), key
, value
);
70 return REBASE_INVALID
;
74 * Callback for --rebase, which parses arg with parse_config_rebase().
76 static int parse_opt_rebase(const struct option
*opt
, const char *arg
, int unset
)
78 enum rebase_type
*value
= opt
->value
;
81 *value
= parse_config_rebase("--rebase", arg
, 0);
83 *value
= unset
? REBASE_FALSE
: REBASE_TRUE
;
84 return *value
== REBASE_INVALID
? -1 : 0;
87 static const char * const pull_usage
[] = {
88 N_("git pull [<options>] [<repository> [<refspec>...]]"),
93 static int opt_verbosity
;
94 static char *opt_progress
;
95 static int recurse_submodules
= RECURSE_SUBMODULES_DEFAULT
;
97 /* Options passed to git-merge or git-rebase */
98 static enum rebase_type opt_rebase
= -1;
99 static char *opt_diffstat
;
100 static char *opt_log
;
101 static char *opt_signoff
;
102 static char *opt_squash
;
103 static char *opt_commit
;
104 static char *opt_edit
;
105 static char *cleanup_arg
;
107 static char *opt_verify_signatures
;
108 static int opt_autostash
= -1;
109 static int config_autostash
;
110 static struct argv_array opt_strategies
= ARGV_ARRAY_INIT
;
111 static struct argv_array opt_strategy_opts
= ARGV_ARRAY_INIT
;
112 static char *opt_gpg_sign
;
113 static int opt_allow_unrelated_histories
;
115 /* Options passed to git-fetch */
116 static char *opt_all
;
117 static char *opt_append
;
118 static char *opt_upload_pack
;
119 static int opt_force
;
120 static char *opt_tags
;
121 static char *opt_prune
;
122 static char *max_children
;
123 static int opt_dry_run
;
124 static char *opt_keep
;
125 static char *opt_depth
;
126 static char *opt_unshallow
;
127 static char *opt_update_shallow
;
128 static char *opt_refmap
;
129 static char *opt_ipv4
;
130 static char *opt_ipv6
;
131 static int opt_show_forced_updates
= -1;
133 static struct option pull_options
[] = {
135 OPT__VERBOSITY(&opt_verbosity
),
136 OPT_PASSTHRU(0, "progress", &opt_progress
, NULL
,
137 N_("force progress reporting"),
139 { OPTION_CALLBACK
, 0, "recurse-submodules",
140 &recurse_submodules
, N_("on-demand"),
141 N_("control for recursive fetching of submodules"),
142 PARSE_OPT_OPTARG
, option_fetch_parse_recurse_submodules
},
144 /* Options passed to git-merge or git-rebase */
145 OPT_GROUP(N_("Options related to merging")),
146 { OPTION_CALLBACK
, 'r', "rebase", &opt_rebase
,
147 "(false|true|merges|preserve|interactive)",
148 N_("incorporate changes by rebasing rather than merging"),
149 PARSE_OPT_OPTARG
, parse_opt_rebase
},
150 OPT_PASSTHRU('n', NULL
, &opt_diffstat
, NULL
,
151 N_("do not show a diffstat at the end of the merge"),
152 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
),
153 OPT_PASSTHRU(0, "stat", &opt_diffstat
, NULL
,
154 N_("show a diffstat at the end of the merge"),
156 OPT_PASSTHRU(0, "summary", &opt_diffstat
, NULL
,
157 N_("(synonym to --stat)"),
158 PARSE_OPT_NOARG
| PARSE_OPT_HIDDEN
),
159 OPT_PASSTHRU(0, "log", &opt_log
, N_("n"),
160 N_("add (at most <n>) entries from shortlog to merge commit message"),
162 OPT_PASSTHRU(0, "signoff", &opt_signoff
, NULL
,
163 N_("add Signed-off-by:"),
165 OPT_PASSTHRU(0, "squash", &opt_squash
, NULL
,
166 N_("create a single commit instead of doing a merge"),
168 OPT_PASSTHRU(0, "commit", &opt_commit
, NULL
,
169 N_("perform a commit if the merge succeeds (default)"),
171 OPT_PASSTHRU(0, "edit", &opt_edit
, NULL
,
172 N_("edit message before committing"),
174 OPT_CLEANUP(&cleanup_arg
),
175 OPT_PASSTHRU(0, "ff", &opt_ff
, NULL
,
176 N_("allow fast-forward"),
178 OPT_PASSTHRU(0, "ff-only", &opt_ff
, NULL
,
179 N_("abort if fast-forward is not possible"),
180 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
),
181 OPT_PASSTHRU(0, "verify-signatures", &opt_verify_signatures
, NULL
,
182 N_("verify that the named commit has a valid GPG signature"),
184 OPT_BOOL(0, "autostash", &opt_autostash
,
185 N_("automatically stash/stash pop before and after rebase")),
186 OPT_PASSTHRU_ARGV('s', "strategy", &opt_strategies
, N_("strategy"),
187 N_("merge strategy to use"),
189 OPT_PASSTHRU_ARGV('X', "strategy-option", &opt_strategy_opts
,
191 N_("option for selected merge strategy"),
193 OPT_PASSTHRU('S', "gpg-sign", &opt_gpg_sign
, N_("key-id"),
194 N_("GPG sign commit"),
196 OPT_SET_INT(0, "allow-unrelated-histories",
197 &opt_allow_unrelated_histories
,
198 N_("allow merging unrelated histories"), 1),
200 /* Options passed to git-fetch */
201 OPT_GROUP(N_("Options related to fetching")),
202 OPT_PASSTHRU(0, "all", &opt_all
, NULL
,
203 N_("fetch from all remotes"),
205 OPT_PASSTHRU('a', "append", &opt_append
, NULL
,
206 N_("append to .git/FETCH_HEAD instead of overwriting"),
208 OPT_PASSTHRU(0, "upload-pack", &opt_upload_pack
, N_("path"),
209 N_("path to upload pack on remote end"),
211 OPT__FORCE(&opt_force
, N_("force overwrite of local branch"), 0),
212 OPT_PASSTHRU('t', "tags", &opt_tags
, NULL
,
213 N_("fetch all tags and associated objects"),
215 OPT_PASSTHRU('p', "prune", &opt_prune
, NULL
,
216 N_("prune remote-tracking branches no longer on remote"),
218 OPT_PASSTHRU('j', "jobs", &max_children
, N_("n"),
219 N_("number of submodules pulled in parallel"),
221 OPT_BOOL(0, "dry-run", &opt_dry_run
,
223 OPT_PASSTHRU('k', "keep", &opt_keep
, NULL
,
224 N_("keep downloaded pack"),
226 OPT_PASSTHRU(0, "depth", &opt_depth
, N_("depth"),
227 N_("deepen history of shallow clone"),
229 OPT_PASSTHRU(0, "unshallow", &opt_unshallow
, NULL
,
230 N_("convert to a complete repository"),
231 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
),
232 OPT_PASSTHRU(0, "update-shallow", &opt_update_shallow
, NULL
,
233 N_("accept refs that update .git/shallow"),
235 OPT_PASSTHRU(0, "refmap", &opt_refmap
, N_("refmap"),
236 N_("specify fetch refmap"),
238 OPT_PASSTHRU('4', "ipv4", &opt_ipv4
, NULL
,
239 N_("use IPv4 addresses only"),
241 OPT_PASSTHRU('6', "ipv6", &opt_ipv6
, NULL
,
242 N_("use IPv6 addresses only"),
244 OPT_BOOL(0, "show-forced-updates", &opt_show_forced_updates
,
245 N_("check for forced-updates on all updated branches")),
251 * Pushes "-q" or "-v" switches into arr to match the opt_verbosity level.
253 static void argv_push_verbosity(struct argv_array
*arr
)
257 for (verbosity
= opt_verbosity
; verbosity
> 0; verbosity
--)
258 argv_array_push(arr
, "-v");
260 for (verbosity
= opt_verbosity
; verbosity
< 0; verbosity
++)
261 argv_array_push(arr
, "-q");
265 * Pushes "-f" switches into arr to match the opt_force level.
267 static void argv_push_force(struct argv_array
*arr
)
269 int force
= opt_force
;
271 argv_array_push(arr
, "-f");
275 * Sets the GIT_REFLOG_ACTION environment variable to the concatenation of argv
277 static void set_reflog_message(int argc
, const char **argv
)
280 struct strbuf msg
= STRBUF_INIT
;
282 for (i
= 0; i
< argc
; i
++) {
284 strbuf_addch(&msg
, ' ');
285 strbuf_addstr(&msg
, argv
[i
]);
288 setenv("GIT_REFLOG_ACTION", msg
.buf
, 0);
290 strbuf_release(&msg
);
294 * If pull.ff is unset, returns NULL. If pull.ff is "true", returns "--ff". If
295 * pull.ff is "false", returns "--no-ff". If pull.ff is "only", returns
296 * "--ff-only". Otherwise, if pull.ff is set to an invalid value, die with an
299 static const char *config_get_ff(void)
303 if (git_config_get_value("pull.ff", &value
))
306 switch (git_parse_maybe_bool(value
)) {
313 if (!strcmp(value
, "only"))
316 die(_("Invalid value for pull.ff: %s"), value
);
320 * Returns the default configured value for --rebase. It first looks for the
321 * value of "branch.$curr_branch.rebase", where $curr_branch is the current
322 * branch, and if HEAD is detached or the configuration key does not exist,
323 * looks for the value of "pull.rebase". If both configuration keys do not
324 * exist, returns REBASE_FALSE.
326 static enum rebase_type
config_get_rebase(void)
328 struct branch
*curr_branch
= branch_get("HEAD");
332 char *key
= xstrfmt("branch.%s.rebase", curr_branch
->name
);
334 if (!git_config_get_value(key
, &value
)) {
335 enum rebase_type ret
= parse_config_rebase(key
, value
, 1);
343 if (!git_config_get_value("pull.rebase", &value
))
344 return parse_config_rebase("pull.rebase", value
, 1);
350 * Read config variables.
352 static int git_pull_config(const char *var
, const char *value
, void *cb
)
354 if (!strcmp(var
, "rebase.autostash")) {
355 config_autostash
= git_config_bool(var
, value
);
357 } else if (!strcmp(var
, "submodule.recurse")) {
358 recurse_submodules
= git_config_bool(var
, value
) ?
359 RECURSE_SUBMODULES_ON
: RECURSE_SUBMODULES_OFF
;
362 return git_default_config(var
, value
, cb
);
366 * Appends merge candidates from FETCH_HEAD that are not marked not-for-merge
369 static void get_merge_heads(struct oid_array
*merge_heads
)
371 const char *filename
= git_path_fetch_head(the_repository
);
373 struct strbuf sb
= STRBUF_INIT
;
374 struct object_id oid
;
376 fp
= xfopen(filename
, "r");
377 while (strbuf_getline_lf(&sb
, fp
) != EOF
) {
379 if (parse_oid_hex(sb
.buf
, &oid
, &p
))
380 continue; /* invalid line: does not start with object ID */
381 if (starts_with(p
, "\tnot-for-merge\t"))
382 continue; /* ref is not-for-merge */
383 oid_array_append(merge_heads
, &oid
);
390 * Used by die_no_merge_candidates() as a for_each_remote() callback to
391 * retrieve the name of the remote if the repository only has one remote.
393 static int get_only_remote(struct remote
*remote
, void *cb_data
)
395 const char **remote_name
= cb_data
;
400 *remote_name
= remote
->name
;
405 * Dies with the appropriate reason for why there are no merge candidates:
407 * 1. We fetched from a specific remote, and a refspec was given, but it ended
408 * up not fetching anything. This is usually because the user provided a
409 * wildcard refspec which had no matches on the remote end.
411 * 2. We fetched from a non-default remote, but didn't specify a branch to
412 * merge. We can't use the configured one because it applies to the default
413 * remote, thus the user must specify the branches to merge.
415 * 3. We fetched from the branch's or repo's default remote, but:
417 * a. We are not on a branch, so there will never be a configured branch to
420 * b. We are on a branch, but there is no configured branch to merge with.
422 * 4. We fetched from the branch's or repo's default remote, but the configured
423 * branch to merge didn't get fetched. (Either it doesn't exist, or wasn't
424 * part of the configured fetch refspec.)
426 static void NORETURN
die_no_merge_candidates(const char *repo
, const char **refspecs
)
428 struct branch
*curr_branch
= branch_get("HEAD");
429 const char *remote
= curr_branch
? curr_branch
->remote_name
: NULL
;
433 fprintf_ln(stderr
, _("There is no candidate for rebasing against among the refs that you just fetched."));
435 fprintf_ln(stderr
, _("There are no candidates for merging among the refs that you just fetched."));
436 fprintf_ln(stderr
, _("Generally this means that you provided a wildcard refspec which had no\n"
437 "matches on the remote end."));
438 } else if (repo
&& curr_branch
&& (!remote
|| strcmp(repo
, remote
))) {
439 fprintf_ln(stderr
, _("You asked to pull from the remote '%s', but did not specify\n"
440 "a branch. Because this is not the default configured remote\n"
441 "for your current branch, you must specify a branch on the command line."),
443 } else if (!curr_branch
) {
444 fprintf_ln(stderr
, _("You are not currently on a branch."));
446 fprintf_ln(stderr
, _("Please specify which branch you want to rebase against."));
448 fprintf_ln(stderr
, _("Please specify which branch you want to merge with."));
449 fprintf_ln(stderr
, _("See git-pull(1) for details."));
450 fprintf(stderr
, "\n");
451 fprintf_ln(stderr
, " git pull %s %s", _("<remote>"), _("<branch>"));
452 fprintf(stderr
, "\n");
453 } else if (!curr_branch
->merge_nr
) {
454 const char *remote_name
= NULL
;
456 if (for_each_remote(get_only_remote
, &remote_name
) || !remote_name
)
457 remote_name
= _("<remote>");
459 fprintf_ln(stderr
, _("There is no tracking information for the current branch."));
461 fprintf_ln(stderr
, _("Please specify which branch you want to rebase against."));
463 fprintf_ln(stderr
, _("Please specify which branch you want to merge with."));
464 fprintf_ln(stderr
, _("See git-pull(1) for details."));
465 fprintf(stderr
, "\n");
466 fprintf_ln(stderr
, " git pull %s %s", _("<remote>"), _("<branch>"));
467 fprintf(stderr
, "\n");
468 fprintf_ln(stderr
, _("If you wish to set tracking information for this branch you can do so with:"));
469 fprintf(stderr
, "\n");
470 fprintf_ln(stderr
, " git branch --set-upstream-to=%s/%s %s\n",
471 remote_name
, _("<branch>"), curr_branch
->name
);
473 fprintf_ln(stderr
, _("Your configuration specifies to merge with the ref '%s'\n"
474 "from the remote, but no such ref was fetched."),
475 *curr_branch
->merge_name
);
480 * Parses argv into [<repo> [<refspecs>...]], returning their values in `repo`
481 * as a string and `refspecs` as a null-terminated array of strings. If `repo`
482 * is not provided in argv, it is set to NULL.
484 static void parse_repo_refspecs(int argc
, const char **argv
, const char **repo
,
485 const char ***refspecs
)
496 * Runs git-fetch, returning its exit status. `repo` and `refspecs` are the
497 * repository and refspecs to fetch, or NULL if they are not provided.
499 static int run_fetch(const char *repo
, const char **refspecs
)
501 struct argv_array args
= ARGV_ARRAY_INIT
;
504 argv_array_pushl(&args
, "fetch", "--update-head-ok", NULL
);
507 argv_push_verbosity(&args
);
509 argv_array_push(&args
, opt_progress
);
511 /* Options passed to git-fetch */
513 argv_array_push(&args
, opt_all
);
515 argv_array_push(&args
, opt_append
);
517 argv_array_push(&args
, opt_upload_pack
);
518 argv_push_force(&args
);
520 argv_array_push(&args
, opt_tags
);
522 argv_array_push(&args
, opt_prune
);
523 if (recurse_submodules
!= RECURSE_SUBMODULES_DEFAULT
)
524 switch (recurse_submodules
) {
525 case RECURSE_SUBMODULES_ON
:
526 argv_array_push(&args
, "--recurse-submodules=on");
528 case RECURSE_SUBMODULES_OFF
:
529 argv_array_push(&args
, "--recurse-submodules=no");
531 case RECURSE_SUBMODULES_ON_DEMAND
:
532 argv_array_push(&args
, "--recurse-submodules=on-demand");
535 BUG("submodule recursion option not understood");
538 argv_array_push(&args
, max_children
);
540 argv_array_push(&args
, "--dry-run");
542 argv_array_push(&args
, opt_keep
);
544 argv_array_push(&args
, opt_depth
);
546 argv_array_push(&args
, opt_unshallow
);
547 if (opt_update_shallow
)
548 argv_array_push(&args
, opt_update_shallow
);
550 argv_array_push(&args
, opt_refmap
);
552 argv_array_push(&args
, opt_ipv4
);
554 argv_array_push(&args
, opt_ipv6
);
555 if (opt_show_forced_updates
> 0)
556 argv_array_push(&args
, "--show-forced-updates");
557 else if (opt_show_forced_updates
== 0)
558 argv_array_push(&args
, "--no-show-forced-updates");
561 argv_array_push(&args
, repo
);
562 argv_array_pushv(&args
, refspecs
);
563 } else if (*refspecs
)
564 BUG("refspecs without repo?");
565 ret
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
566 argv_array_clear(&args
);
571 * "Pulls into void" by branching off merge_head.
573 static int pull_into_void(const struct object_id
*merge_head
,
574 const struct object_id
*curr_head
)
576 if (opt_verify_signatures
) {
577 struct commit
*commit
;
579 commit
= lookup_commit(the_repository
, merge_head
);
581 die(_("unable to access commit %s"),
582 oid_to_hex(merge_head
));
584 verify_merge_signature(commit
, opt_verbosity
);
588 * Two-way merge: we treat the index as based on an empty tree,
589 * and try to fast-forward to HEAD. This ensures we will not lose
590 * index/worktree changes that the user already made on the unborn
593 if (checkout_fast_forward(the_repository
,
594 the_hash_algo
->empty_tree
,
598 if (update_ref("initial pull", "HEAD", merge_head
, curr_head
, 0, UPDATE_REFS_DIE_ON_ERR
))
604 static int rebase_submodules(void)
606 struct child_process cp
= CHILD_PROCESS_INIT
;
610 argv_array_pushl(&cp
.args
, "submodule", "update",
611 "--recursive", "--rebase", NULL
);
612 argv_push_verbosity(&cp
.args
);
614 return run_command(&cp
);
617 static int update_submodules(void)
619 struct child_process cp
= CHILD_PROCESS_INIT
;
623 argv_array_pushl(&cp
.args
, "submodule", "update",
624 "--recursive", "--checkout", NULL
);
625 argv_push_verbosity(&cp
.args
);
627 return run_command(&cp
);
631 * Runs git-merge, returning its exit status.
633 static int run_merge(void)
636 struct argv_array args
= ARGV_ARRAY_INIT
;
638 argv_array_pushl(&args
, "merge", NULL
);
641 argv_push_verbosity(&args
);
643 argv_array_push(&args
, opt_progress
);
645 /* Options passed to git-merge */
647 argv_array_push(&args
, opt_diffstat
);
649 argv_array_push(&args
, opt_log
);
651 argv_array_push(&args
, opt_signoff
);
653 argv_array_push(&args
, opt_squash
);
655 argv_array_push(&args
, opt_commit
);
657 argv_array_push(&args
, opt_edit
);
659 argv_array_pushf(&args
, "--cleanup=%s", cleanup_arg
);
661 argv_array_push(&args
, opt_ff
);
662 if (opt_verify_signatures
)
663 argv_array_push(&args
, opt_verify_signatures
);
664 argv_array_pushv(&args
, opt_strategies
.argv
);
665 argv_array_pushv(&args
, opt_strategy_opts
.argv
);
667 argv_array_push(&args
, opt_gpg_sign
);
668 if (opt_allow_unrelated_histories
> 0)
669 argv_array_push(&args
, "--allow-unrelated-histories");
671 argv_array_push(&args
, "FETCH_HEAD");
672 ret
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
673 argv_array_clear(&args
);
678 * Returns remote's upstream branch for the current branch. If remote is NULL,
679 * the current branch's configured default remote is used. Returns NULL if
680 * `remote` does not name a valid remote, HEAD does not point to a branch,
681 * remote is not the branch's configured remote or the branch does not have any
682 * configured upstream branch.
684 static const char *get_upstream_branch(const char *remote
)
687 struct branch
*curr_branch
;
688 const char *curr_branch_remote
;
690 rm
= remote_get(remote
);
694 curr_branch
= branch_get("HEAD");
698 curr_branch_remote
= remote_for_branch(curr_branch
, NULL
);
699 assert(curr_branch_remote
);
701 if (strcmp(curr_branch_remote
, rm
->name
))
704 return branch_get_upstream(curr_branch
, NULL
);
708 * Derives the remote-tracking branch from the remote and refspec.
710 * FIXME: The current implementation assumes the default mapping of
711 * refs/heads/<branch_name> to refs/remotes/<remote_name>/<branch_name>.
713 static const char *get_tracking_branch(const char *remote
, const char *refspec
)
715 struct refspec_item spec
;
716 const char *spec_src
;
717 const char *merge_branch
;
719 refspec_item_init_or_die(&spec
, refspec
, REFSPEC_FETCH
);
721 if (!*spec_src
|| !strcmp(spec_src
, "HEAD"))
723 else if (skip_prefix(spec_src
, "heads/", &spec_src
))
725 else if (skip_prefix(spec_src
, "refs/heads/", &spec_src
))
727 else if (starts_with(spec_src
, "refs/") ||
728 starts_with(spec_src
, "tags/") ||
729 starts_with(spec_src
, "remotes/"))
733 if (!strcmp(remote
, "."))
734 merge_branch
= mkpath("refs/heads/%s", spec_src
);
736 merge_branch
= mkpath("refs/remotes/%s/%s", remote
, spec_src
);
740 refspec_item_clear(&spec
);
745 * Given the repo and refspecs, sets fork_point to the point at which the
746 * current branch forked from its remote-tracking branch. Returns 0 on success,
749 static int get_rebase_fork_point(struct object_id
*fork_point
, const char *repo
,
753 struct branch
*curr_branch
;
754 const char *remote_branch
;
755 struct child_process cp
= CHILD_PROCESS_INIT
;
756 struct strbuf sb
= STRBUF_INIT
;
758 curr_branch
= branch_get("HEAD");
763 remote_branch
= get_tracking_branch(repo
, refspec
);
765 remote_branch
= get_upstream_branch(repo
);
770 argv_array_pushl(&cp
.args
, "merge-base", "--fork-point",
771 remote_branch
, curr_branch
->name
, NULL
);
776 ret
= capture_command(&cp
, &sb
, GIT_MAX_HEXSZ
);
780 ret
= get_oid_hex(sb
.buf
, fork_point
);
790 * Sets merge_base to the octopus merge base of curr_head, merge_head and
791 * fork_point. Returns 0 if a merge base is found, 1 otherwise.
793 static int get_octopus_merge_base(struct object_id
*merge_base
,
794 const struct object_id
*curr_head
,
795 const struct object_id
*merge_head
,
796 const struct object_id
*fork_point
)
798 struct commit_list
*revs
= NULL
, *result
;
800 commit_list_insert(lookup_commit_reference(the_repository
, curr_head
),
802 commit_list_insert(lookup_commit_reference(the_repository
, merge_head
),
804 if (!is_null_oid(fork_point
))
805 commit_list_insert(lookup_commit_reference(the_repository
, fork_point
),
808 result
= get_octopus_merge_bases(revs
);
809 free_commit_list(revs
);
810 reduce_heads_replace(&result
);
815 oidcpy(merge_base
, &result
->item
->object
.oid
);
816 free_commit_list(result
);
821 * Given the current HEAD oid, the merge head returned from git-fetch and the
822 * fork point calculated by get_rebase_fork_point(), runs git-rebase with the
823 * appropriate arguments and returns its exit status.
825 static int run_rebase(const struct object_id
*curr_head
,
826 const struct object_id
*merge_head
,
827 const struct object_id
*fork_point
)
830 struct object_id oct_merge_base
;
831 struct argv_array args
= ARGV_ARRAY_INIT
;
833 if (!get_octopus_merge_base(&oct_merge_base
, curr_head
, merge_head
, fork_point
))
834 if (!is_null_oid(fork_point
) && oideq(&oct_merge_base
, fork_point
))
837 argv_array_push(&args
, "rebase");
840 argv_push_verbosity(&args
);
842 /* Options passed to git-rebase */
843 if (opt_rebase
== REBASE_MERGES
)
844 argv_array_push(&args
, "--rebase-merges");
845 else if (opt_rebase
== REBASE_PRESERVE
)
846 argv_array_push(&args
, "--preserve-merges");
847 else if (opt_rebase
== REBASE_INTERACTIVE
)
848 argv_array_push(&args
, "--interactive");
850 argv_array_push(&args
, opt_diffstat
);
851 argv_array_pushv(&args
, opt_strategies
.argv
);
852 argv_array_pushv(&args
, opt_strategy_opts
.argv
);
854 argv_array_push(&args
, opt_gpg_sign
);
855 if (opt_autostash
== 0)
856 argv_array_push(&args
, "--no-autostash");
857 else if (opt_autostash
== 1)
858 argv_array_push(&args
, "--autostash");
859 if (opt_verify_signatures
&&
860 !strcmp(opt_verify_signatures
, "--verify-signatures"))
861 warning(_("ignoring --verify-signatures for rebase"));
863 argv_array_push(&args
, "--onto");
864 argv_array_push(&args
, oid_to_hex(merge_head
));
866 if (fork_point
&& !is_null_oid(fork_point
))
867 argv_array_push(&args
, oid_to_hex(fork_point
));
869 argv_array_push(&args
, oid_to_hex(merge_head
));
871 ret
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
872 argv_array_clear(&args
);
876 int cmd_pull(int argc
, const char **argv
, const char *prefix
)
878 const char *repo
, **refspecs
;
879 struct oid_array merge_heads
= OID_ARRAY_INIT
;
880 struct object_id orig_head
, curr_head
;
881 struct object_id rebase_fork_point
;
884 if (!getenv("GIT_REFLOG_ACTION"))
885 set_reflog_message(argc
, argv
);
887 git_config(git_pull_config
, NULL
);
889 argc
= parse_options(argc
, argv
, prefix
, pull_options
, pull_usage
, 0);
893 * this only checks the validity of cleanup_arg; we don't need
894 * a valid value for use_editor
896 get_cleanup_mode(cleanup_arg
, 0);
898 parse_repo_refspecs(argc
, argv
, &repo
, &refspecs
);
901 opt_ff
= xstrdup_or_null(config_get_ff());
904 opt_rebase
= config_get_rebase();
906 if (read_cache_unmerged())
907 die_resolve_conflict("pull");
909 if (file_exists(git_path_merge_head(the_repository
)))
910 die_conclude_merge();
912 if (get_oid("HEAD", &orig_head
))
915 if (!opt_rebase
&& opt_autostash
!= -1)
916 die(_("--[no-]autostash option is only valid with --rebase."));
918 autostash
= config_autostash
;
920 if (opt_autostash
!= -1)
921 autostash
= opt_autostash
;
923 if (is_null_oid(&orig_head
) && !is_cache_unborn())
924 die(_("Updating an unborn branch with changes added to the index."));
927 require_clean_work_tree(the_repository
,
928 N_("pull with rebase"),
929 _("please commit or stash them."), 1, 0);
931 if (get_rebase_fork_point(&rebase_fork_point
, repo
, *refspecs
))
932 oidclr(&rebase_fork_point
);
935 if (run_fetch(repo
, refspecs
))
941 if (get_oid("HEAD", &curr_head
))
944 if (!is_null_oid(&orig_head
) && !is_null_oid(&curr_head
) &&
945 !oideq(&orig_head
, &curr_head
)) {
947 * The fetch involved updating the current branch.
949 * The working tree and the index file are still based on
950 * orig_head commit, but we are merging into curr_head.
951 * Update the working tree to match curr_head.
954 warning(_("fetch updated the current branch head.\n"
955 "fast-forwarding your working tree from\n"
956 "commit %s."), oid_to_hex(&orig_head
));
958 if (checkout_fast_forward(the_repository
, &orig_head
,
960 die(_("Cannot fast-forward your working tree.\n"
961 "After making sure that you saved anything precious from\n"
964 "$ git reset --hard\n"
965 "to recover."), oid_to_hex(&orig_head
));
968 get_merge_heads(&merge_heads
);
971 die_no_merge_candidates(repo
, refspecs
);
973 if (is_null_oid(&orig_head
)) {
974 if (merge_heads
.nr
> 1)
975 die(_("Cannot merge multiple branches into empty head."));
976 return pull_into_void(merge_heads
.oid
, &curr_head
);
978 if (opt_rebase
&& merge_heads
.nr
> 1)
979 die(_("Cannot rebase onto multiple branches."));
983 if ((recurse_submodules
== RECURSE_SUBMODULES_ON
||
984 recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
) &&
985 submodule_touches_in_range(the_repository
, &rebase_fork_point
, &curr_head
))
986 die(_("cannot rebase with locally recorded submodule modifications"));
988 struct commit_list
*list
= NULL
;
989 struct commit
*merge_head
, *head
;
991 head
= lookup_commit_reference(the_repository
,
993 commit_list_insert(head
, &list
);
994 merge_head
= lookup_commit_reference(the_repository
,
995 &merge_heads
.oid
[0]);
996 if (is_descendant_of(merge_head
, list
)) {
997 /* we can fast-forward this without invoking rebase */
998 opt_ff
= "--ff-only";
1002 ret
= run_rebase(&curr_head
, merge_heads
.oid
, &rebase_fork_point
);
1004 if (!ret
&& (recurse_submodules
== RECURSE_SUBMODULES_ON
||
1005 recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
))
1006 ret
= rebase_submodules();
1010 int ret
= run_merge();
1011 if (!ret
&& (recurse_submodules
== RECURSE_SUBMODULES_ON
||
1012 recurse_submodules
== RECURSE_SUBMODULES_ON_DEMAND
))
1013 ret
= update_submodules();