Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 1 | git-pull(1) |
| 2 | =========== |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
John Keeping | 153d726 | 2013-07-07 20:02:15 +0100 | [diff] [blame] | 6 | git-pull - Fetch from and integrate with another repository or a local branch |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Martin von Zweigbergk | 7791a1d | 2011-07-01 22:38:26 -0400 | [diff] [blame] | 11 | [verse] |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 12 | 'git pull' [options] [<repository> [<refspec>...]] |
Junio C Hamano | 0c04094 | 2005-07-16 00:17:42 -0700 | [diff] [blame] | 13 | |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 14 | |
| 15 | DESCRIPTION |
| 16 | ----------- |
Junio C Hamano | ab9b313 | 2005-08-24 16:23:08 -0700 | [diff] [blame] | 17 | |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 18 | Incorporates changes from a remote repository into the current |
| 19 | branch. In its default mode, `git pull` is shorthand for |
| 20 | `git fetch` followed by `git merge FETCH_HEAD`. |
Junio C Hamano | 0c04094 | 2005-07-16 00:17:42 -0700 | [diff] [blame] | 21 | |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 22 | More precisely, 'git pull' runs 'git fetch' with the given |
| 23 | parameters and calls 'git merge' to merge the retrieved branch |
| 24 | heads into the current branch. |
| 25 | With `--rebase`, it runs 'git rebase' instead of 'git merge'. |
Jon Loeliger | 93d69d8 | 2005-11-06 23:30:56 -0600 | [diff] [blame] | 26 | |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 27 | <repository> should be the name of a remote repository as |
| 28 | passed to linkgit:git-fetch[1]. <refspec> can name an |
| 29 | arbitrary remote ref (for example, the name of a tag) or even |
Matthieu Moy | 0e615b2 | 2010-11-02 16:31:20 +0100 | [diff] [blame] | 30 | a collection of refs with corresponding remote-tracking branches |
Jonathan Nieder | 3bae8d4 | 2010-12-03 14:04:17 -0600 | [diff] [blame] | 31 | (e.g., refs/heads/{asterisk}:refs/remotes/origin/{asterisk}), |
| 32 | but usually it is the name of a branch in the remote repository. |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 33 | |
| 34 | Default values for <repository> and <branch> are read from the |
| 35 | "remote" and "merge" configuration for the current branch |
| 36 | as set by linkgit:git-branch[1] `--track`. |
| 37 | |
| 38 | Assume the following history exists and the current branch is |
| 39 | "`master`": |
| 40 | |
| 41 | ------------ |
| 42 | A---B---C master on origin |
| 43 | / |
| 44 | D---E---F---G master |
Junio C Hamano | 5a3fd6a | 2013-10-31 13:43:35 -0700 | [diff] [blame] | 45 | ^ |
| 46 | origin/master in your repository |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 47 | ------------ |
| 48 | |
| 49 | Then "`git pull`" will fetch and replay the changes from the remote |
| 50 | `master` branch since it diverged from the local `master` (i.e., `E`) |
| 51 | until its current commit (`C`) on top of `master` and record the |
| 52 | result in a new commit along with the names of the two parent commits |
| 53 | and a log message from the user describing the changes. |
| 54 | |
| 55 | ------------ |
Junio C Hamano | 5a3fd6a | 2013-10-31 13:43:35 -0700 | [diff] [blame] | 56 | A---B---C origin/master |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 57 | / \ |
| 58 | D---E---F---G---H master |
| 59 | ------------ |
| 60 | |
| 61 | See linkgit:git-merge[1] for details, including how conflicts |
| 62 | are presented and handled. |
| 63 | |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 64 | In Git 1.7.0 or later, to cancel a conflicting merge, use |
| 65 | `git reset --merge`. *Warning*: In older versions of Git, running 'git pull' |
Thomas Rast | e330d8c | 2010-01-07 17:42:27 +0100 | [diff] [blame] | 66 | with uncommitted changes is discouraged: while possible, it leaves you |
Jonathan Nieder | 3f8fc18 | 2010-08-02 16:39:30 -0500 | [diff] [blame] | 67 | in a state that may be hard to back out of in the case of a conflict. |
| 68 | |
| 69 | If any of the remote changes overlap with local uncommitted changes, |
| 70 | the merge will be automatically cancelled and the work tree untouched. |
| 71 | It is generally best to get any local changes in working order before |
| 72 | pulling or stash them away with linkgit:git-stash[1]. |
Thomas Rast | e330d8c | 2010-01-07 17:42:27 +0100 | [diff] [blame] | 73 | |
Junio C Hamano | 0c04094 | 2005-07-16 00:17:42 -0700 | [diff] [blame] | 74 | OPTIONS |
| 75 | ------- |
Jari Aalto | 3f7a9b5 | 2009-10-22 17:14:57 +0300 | [diff] [blame] | 76 | |
Tay Ray Chuan | 409b8d8 | 2010-02-24 20:50:21 +0800 | [diff] [blame] | 77 | -q:: |
| 78 | --quiet:: |
Tay Ray Chuan | 9839018 | 2010-02-24 20:50:28 +0800 | [diff] [blame] | 79 | This is passed to both underlying git-fetch to squelch reporting of |
| 80 | during transfer, and underlying git-merge to squelch output during |
| 81 | merging. |
Tay Ray Chuan | 409b8d8 | 2010-02-24 20:50:21 +0800 | [diff] [blame] | 82 | |
| 83 | -v:: |
| 84 | --verbose:: |
| 85 | Pass --verbose to git-fetch and git-merge. |
| 86 | |
Jens Lehmann | 8f0700d | 2011-03-06 23:11:21 +0100 | [diff] [blame] | 87 | --[no-]recurse-submodules[=yes|on-demand|no]:: |
Jens Lehmann | 7811d96 | 2011-02-07 23:24:54 +0100 | [diff] [blame] | 88 | This option controls if new commits of all populated submodules should |
| 89 | be fetched too (see linkgit:git-config[1] and linkgit:gitmodules[5]). |
| 90 | That might be necessary to get the data needed for merging submodule |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 91 | commits, a feature Git learned in 1.7.3. Notice that the result of a |
Jens Lehmann | 7811d96 | 2011-02-07 23:24:54 +0100 | [diff] [blame] | 92 | merge will not be checked out in the submodule, "git submodule update" |
| 93 | has to be called afterwards to bring the work tree up to date with the |
| 94 | merge result. |
| 95 | |
Jari Aalto | 3f7a9b5 | 2009-10-22 17:14:57 +0300 | [diff] [blame] | 96 | Options related to merging |
| 97 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 98 | |
Miklos Vajna | 10eb64f | 2008-01-25 10:17:38 +0000 | [diff] [blame] | 99 | :git-pull: 1 |
Junio C Hamano | 3746501 | 2005-11-04 00:06:20 -0800 | [diff] [blame] | 100 | |
Junio C Hamano | d51a475 | 2014-01-14 10:26:21 -0800 | [diff] [blame] | 101 | include::merge-options.txt[] |
| 102 | |
Miklos Vajna | d9aa361 | 2012-08-16 11:50:18 +0200 | [diff] [blame] | 103 | -r:: |
Johannes Schindelin | f5eb87b | 2016-01-13 13:17:15 +0100 | [diff] [blame] | 104 | --rebase[=false|true|preserve|interactive]:: |
Stephen Haberman | 66713ef | 2013-08-12 22:43:42 -0500 | [diff] [blame] | 105 | When true, rebase the current branch on top of the upstream |
| 106 | branch after fetching. If there is a remote-tracking branch |
| 107 | corresponding to the upstream branch and the upstream branch |
| 108 | was rebased since last fetched, the rebase uses that information |
| 109 | to avoid rebasing non-local changes. |
| 110 | + |
Sebastian Schuberth | 129260c | 2015-03-26 21:11:21 +0100 | [diff] [blame] | 111 | When set to preserve, rebase with the `--preserve-merges` option passed |
| 112 | to `git rebase` so that locally created merge commits will not be flattened. |
Stephen Haberman | 66713ef | 2013-08-12 22:43:42 -0500 | [diff] [blame] | 113 | + |
| 114 | When false, merge the current branch into the upstream branch. |
Martin von Zweigbergk | 11fe3f7 | 2010-11-12 19:55:58 +0100 | [diff] [blame] | 115 | + |
Johannes Schindelin | f5eb87b | 2016-01-13 13:17:15 +0100 | [diff] [blame] | 116 | When `interactive`, enable the interactive mode of rebase. |
| 117 | + |
Nguyễn Thái Ngọc Duy | da0005b | 2015-03-11 16:32:45 -0400 | [diff] [blame] | 118 | See `pull.rebase`, `branch.<name>.rebase` and `branch.autoSetupRebase` in |
Jari Aalto | c4f4157 | 2010-12-03 10:20:54 +0200 | [diff] [blame] | 119 | linkgit:git-config[1] if you want to make `git pull` always use |
Jeff King | 6cf378f | 2012-04-26 04:51:57 -0400 | [diff] [blame] | 120 | `--rebase` instead of merging. |
Junio C Hamano | 473d3316 | 2008-02-11 11:22:01 -0800 | [diff] [blame] | 121 | + |
Junio C Hamano | 6bfa3c9 | 2008-06-12 14:19:09 -0700 | [diff] [blame] | 122 | [NOTE] |
| 123 | This is a potentially _dangerous_ mode of operation. |
Junio C Hamano | 473d3316 | 2008-02-11 11:22:01 -0800 | [diff] [blame] | 124 | It rewrites history, which does not bode well when you |
| 125 | published that history already. Do *not* use this option |
| 126 | unless you have read linkgit:git-rebase[1] carefully. |
Johannes Schindelin | cd67e4d | 2007-11-28 13:11:07 +0000 | [diff] [blame] | 127 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 128 | --no-rebase:: |
| 129 | Override earlier --rebase. |
Johannes Schindelin | cd67e4d | 2007-11-28 13:11:07 +0000 | [diff] [blame] | 130 | |
Mehul Jain | f66398e | 2016-03-21 23:48:03 +0530 | [diff] [blame] | 131 | --autostash:: |
| 132 | --no-autostash:: |
| 133 | Before starting rebase, stash local modifications away (see |
| 134 | linkgit:git-stash[1]) if needed, and apply the stash when |
| 135 | done. `--no-autostash` is useful to override the `rebase.autoStash` |
| 136 | configuration variable (see linkgit:git-config[1]). |
| 137 | + |
| 138 | This option is only valid when "--rebase" is used. |
| 139 | |
Jari Aalto | 3f7a9b5 | 2009-10-22 17:14:57 +0300 | [diff] [blame] | 140 | Options related to fetching |
| 141 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 142 | |
Jay Soffian | a288394 | 2008-02-19 14:24:32 -0500 | [diff] [blame] | 143 | include::fetch-options.txt[] |
| 144 | |
| 145 | include::pull-fetch-param.txt[] |
| 146 | |
| 147 | include::urls-remotes.txt[] |
| 148 | |
| 149 | include::merge-strategies.txt[] |
| 150 | |
Junio C Hamano | 9e2586f | 2007-02-08 23:35:43 -0800 | [diff] [blame] | 151 | DEFAULT BEHAVIOUR |
| 152 | ----------------- |
| 153 | |
| 154 | Often people use `git pull` without giving any parameter. |
| 155 | Traditionally, this has been equivalent to saying `git pull |
| 156 | origin`. However, when configuration `branch.<name>.remote` is |
| 157 | present while on branch `<name>`, that value is used instead of |
| 158 | `origin`. |
| 159 | |
| 160 | In order to determine what URL to use to fetch from, the value |
| 161 | of the configuration `remote.<origin>.url` is consulted |
| 162 | and if there is not any such variable, the value on `URL: ` line |
| 163 | in `$GIT_DIR/remotes/<origin>` file is used. |
| 164 | |
| 165 | In order to determine what remote branches to fetch (and |
Matthieu Moy | 8b3f3f8 | 2010-11-02 16:31:23 +0100 | [diff] [blame] | 166 | optionally store in the remote-tracking branches) when the command is |
Junio C Hamano | 9e2586f | 2007-02-08 23:35:43 -0800 | [diff] [blame] | 167 | run without any refspec parameters on the command line, values |
| 168 | of the configuration variable `remote.<origin>.fetch` are |
| 169 | consulted, and if there aren't any, `$GIT_DIR/remotes/<origin>` |
| 170 | file is consulted and its `Pull: ` lines are used. |
| 171 | In addition to the refspec formats described in the OPTIONS |
| 172 | section, you can have a globbing refspec that looks like this: |
| 173 | |
| 174 | ------------ |
| 175 | refs/heads/*:refs/remotes/origin/* |
| 176 | ------------ |
| 177 | |
| 178 | A globbing refspec must have a non-empty RHS (i.e. must store |
Matthieu Moy | 8b3f3f8 | 2010-11-02 16:31:23 +0100 | [diff] [blame] | 179 | what were fetched in remote-tracking branches), and its LHS and RHS |
Junio C Hamano | 9e2586f | 2007-02-08 23:35:43 -0800 | [diff] [blame] | 180 | must end with `/*`. The above specifies that all remote |
Matthieu Moy | 8b3f3f8 | 2010-11-02 16:31:23 +0100 | [diff] [blame] | 181 | branches are tracked using remote-tracking branches in |
Junio C Hamano | 9e2586f | 2007-02-08 23:35:43 -0800 | [diff] [blame] | 182 | `refs/remotes/origin/` hierarchy under the same name. |
| 183 | |
| 184 | The rule to determine which remote branch to merge after |
| 185 | fetching is a bit involved, in order not to break backward |
| 186 | compatibility. |
| 187 | |
| 188 | If explicit refspecs were given on the command |
| 189 | line of `git pull`, they are all merged. |
| 190 | |
| 191 | When no refspec was given on the command line, then `git pull` |
| 192 | uses the refspec from the configuration or |
| 193 | `$GIT_DIR/remotes/<origin>`. In such cases, the following |
| 194 | rules apply: |
| 195 | |
| 196 | . If `branch.<name>.merge` configuration for the current |
| 197 | branch `<name>` exists, that is the name of the branch at the |
| 198 | remote site that is merged. |
| 199 | |
| 200 | . If the refspec is a globbing one, nothing is merged. |
| 201 | |
| 202 | . Otherwise the remote branch of the first refspec is merged. |
| 203 | |
| 204 | |
Junio C Hamano | 3746501 | 2005-11-04 00:06:20 -0800 | [diff] [blame] | 205 | EXAMPLES |
| 206 | -------- |
| 207 | |
Christian Couder | 921177f | 2008-05-07 06:29:28 +0200 | [diff] [blame] | 208 | * Update the remote-tracking branches for the repository |
| 209 | you cloned from, then merge one of them into your |
| 210 | current branch: |
| 211 | + |
| 212 | ------------------------------------------------ |
| 213 | $ git pull, git pull origin |
| 214 | ------------------------------------------------ |
| 215 | + |
| 216 | Normally the branch merged in is the HEAD of the remote repository, |
| 217 | but the choice is determined by the branch.<name>.remote and |
| 218 | branch.<name>.merge options; see linkgit:git-config[1] for details. |
Junio C Hamano | 3746501 | 2005-11-04 00:06:20 -0800 | [diff] [blame] | 219 | |
Christian Couder | 921177f | 2008-05-07 06:29:28 +0200 | [diff] [blame] | 220 | * Merge into the current branch the remote branch `next`: |
| 221 | + |
| 222 | ------------------------------------------------ |
| 223 | $ git pull origin next |
| 224 | ------------------------------------------------ |
| 225 | + |
| 226 | This leaves a copy of `next` temporarily in FETCH_HEAD, but |
Clemens Buchacher | d504f69 | 2009-10-21 19:21:23 +0200 | [diff] [blame] | 227 | does not update any remote-tracking branches. Using remote-tracking |
| 228 | branches, the same can be done by invoking fetch and merge: |
Christian Couder | 921177f | 2008-05-07 06:29:28 +0200 | [diff] [blame] | 229 | + |
| 230 | ------------------------------------------------ |
Clemens Buchacher | d504f69 | 2009-10-21 19:21:23 +0200 | [diff] [blame] | 231 | $ git fetch origin |
| 232 | $ git merge origin/next |
Christian Couder | 921177f | 2008-05-07 06:29:28 +0200 | [diff] [blame] | 233 | ------------------------------------------------ |
Jon Loeliger | bccf595 | 2005-11-04 20:36:08 -0600 | [diff] [blame] | 234 | |
Junio C Hamano | 3746501 | 2005-11-04 00:06:20 -0800 | [diff] [blame] | 235 | |
Mihai Capotă | 38ef8a7 | 2013-03-27 12:04:51 +0100 | [diff] [blame] | 236 | If you tried a pull which resulted in complex conflicts and |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 237 | would want to start over, you can recover with 'git reset'. |
Junio C Hamano | 3ae854c | 2005-12-16 18:23:33 -0800 | [diff] [blame] | 238 | |
| 239 | |
Jens Lehmann | 794a359 | 2011-03-06 23:14:15 +0100 | [diff] [blame] | 240 | BUGS |
| 241 | ---- |
| 242 | Using --recurse-submodules can only fetch new commits in already checked |
| 243 | out submodules right now. When e.g. upstream added a new submodule in the |
| 244 | just fetched commits of the superproject the submodule itself can not be |
| 245 | fetched, making it impossible to check out that submodule later without |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 246 | having to do a fetch again. This is expected to be fixed in a future Git |
Jens Lehmann | 794a359 | 2011-03-06 23:14:15 +0100 | [diff] [blame] | 247 | version. |
| 248 | |
Junio C Hamano | fdd0897 | 2005-11-05 01:37:00 -0800 | [diff] [blame] | 249 | SEE ALSO |
| 250 | -------- |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 251 | linkgit:git-fetch[1], linkgit:git-merge[1], linkgit:git-config[1] |
Junio C Hamano | fdd0897 | 2005-11-05 01:37:00 -0800 | [diff] [blame] | 252 | |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 253 | GIT |
| 254 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 255 | Part of the linkgit:git[1] suite |