]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-pull.txt
Documentation: be consistent about "git-" versus "git "
[thirdparty/git.git] / Documentation / git-pull.txt
CommitLineData
215a7ad1
JH
1git-pull(1)
2===========
2cf565c5
DG
3
4NAME
5----
c3f0baac 6git-pull - Fetch from and merge with another repository or a local branch
2cf565c5
DG
7
8
9SYNOPSIS
10--------
b1889c36 11'git pull' <options> <repository> <refspec>...
0c04094b 12
2cf565c5
DG
13
14DESCRIPTION
15-----------
bccf5956
JL
16Runs `git-fetch` with the given parameters, and calls `git-merge`
17to merge the retrieved head(s) into the current branch.
a288394e 18With `--rebase`, calls `git-rebase` instead of `git-merge`.
ab9b3138 19
bccf5956 20Note that you can use `.` (current directory) as the
710c97db
JH
21<repository> to pull from the local repository -- this is useful
22when merging local branches into the current branch.
0c04094b 23
5b10a3c1
JH
24Also note that options meant for `git-pull` itself and underlying
25`git-merge` must be given before the options meant for `git-fetch`.
93d69d86 26
0c04094b
JH
27OPTIONS
28-------
93d69d86 29include::merge-options.txt[]
2cf565c5 30
10eb64f5 31:git-pull: 1
37465016 32
3240240f 33--rebase::
c85c7927
JS
34 Instead of a merge, perform a rebase after fetching. If
35 there is a remote ref for the upstream branch, and this branch
36 was rebased since last fetched, the rebase uses that information
a288394e
JS
37 to avoid rebasing non-local changes. To make this the default
38 for branch `<name>`, set configuration `branch.<name>.rebase`
39 to `true`.
473d3316 40+
6bfa3c99
JH
41[NOTE]
42This is a potentially _dangerous_ mode of operation.
473d3316
JH
43It rewrites history, which does not bode well when you
44published that history already. Do *not* use this option
45unless you have read linkgit:git-rebase[1] carefully.
cd67e4d4 46
3240240f
SB
47--no-rebase::
48 Override earlier --rebase.
cd67e4d4 49
a288394e
JS
50include::fetch-options.txt[]
51
52include::pull-fetch-param.txt[]
53
54include::urls-remotes.txt[]
55
56include::merge-strategies.txt[]
57
9e2586ff
JH
58DEFAULT BEHAVIOUR
59-----------------
60
61Often people use `git pull` without giving any parameter.
62Traditionally, this has been equivalent to saying `git pull
63origin`. However, when configuration `branch.<name>.remote` is
64present while on branch `<name>`, that value is used instead of
65`origin`.
66
67In order to determine what URL to use to fetch from, the value
68of the configuration `remote.<origin>.url` is consulted
69and if there is not any such variable, the value on `URL: ` line
70in `$GIT_DIR/remotes/<origin>` file is used.
71
72In order to determine what remote branches to fetch (and
73optionally store in the tracking branches) when the command is
74run without any refspec parameters on the command line, values
75of the configuration variable `remote.<origin>.fetch` are
76consulted, and if there aren't any, `$GIT_DIR/remotes/<origin>`
77file is consulted and its `Pull: ` lines are used.
78In addition to the refspec formats described in the OPTIONS
79section, you can have a globbing refspec that looks like this:
80
81------------
82refs/heads/*:refs/remotes/origin/*
83------------
84
85A globbing refspec must have a non-empty RHS (i.e. must store
86what were fetched in tracking branches), and its LHS and RHS
87must end with `/*`. The above specifies that all remote
88branches are tracked using tracking branches in
89`refs/remotes/origin/` hierarchy under the same name.
90
91The rule to determine which remote branch to merge after
92fetching is a bit involved, in order not to break backward
93compatibility.
94
95If explicit refspecs were given on the command
96line of `git pull`, they are all merged.
97
98When no refspec was given on the command line, then `git pull`
99uses the refspec from the configuration or
100`$GIT_DIR/remotes/<origin>`. In such cases, the following
101rules apply:
102
103. If `branch.<name>.merge` configuration for the current
104 branch `<name>` exists, that is the name of the branch at the
105 remote site that is merged.
106
107. If the refspec is a globbing one, nothing is merged.
108
109. Otherwise the remote branch of the first refspec is merged.
110
111
37465016
JH
112EXAMPLES
113--------
114
921177f5
CC
115* Update the remote-tracking branches for the repository
116 you cloned from, then merge one of them into your
117 current branch:
118+
119------------------------------------------------
120$ git pull, git pull origin
121------------------------------------------------
122+
123Normally the branch merged in is the HEAD of the remote repository,
124but the choice is determined by the branch.<name>.remote and
125branch.<name>.merge options; see linkgit:git-config[1] for details.
126
127* Merge into the current branch the remote branch `next`:
128+
129------------------------------------------------
130$ git pull origin next
131------------------------------------------------
132+
133This leaves a copy of `next` temporarily in FETCH_HEAD, but
134does not update any remote-tracking branches.
135
136* Bundle local branch `fixes` and `enhancements` on top of
137 the current branch, making an Octopus merge:
138+
139------------------------------------------------
140$ git pull . fixes enhancements
141------------------------------------------------
142+
143This `git pull .` syntax is equivalent to `git merge`.
144
145* Merge local branch `obsolete` into the current branch, using `ours`
146 merge strategy:
147+
148------------------------------------------------
149$ git pull -s ours . obsolete
150------------------------------------------------
151
152* Merge local branch `maint` into the current branch, but do not make
153 a commit automatically:
154+
155------------------------------------------------
156$ git pull --no-commit . maint
157------------------------------------------------
158+
159This can be used when you want to include further changes to the
160merge, or want to write your own merge commit message.
37465016
JH
161+
162You should refrain from abusing this option to sneak substantial
163changes into a merge commit. Small fixups like bumping
164release/version name would be acceptable.
165
921177f5 166* Command line pull of multiple branches from one repository:
bccf5956
JL
167+
168------------------------------------------------
bccf5956 169$ git checkout master
33a59fd0
BF
170$ git fetch origin +pu:pu maint:tmp
171$ git pull . tmp
bccf5956
JL
172------------------------------------------------
173+
921177f5
CC
174This updates (or creates, as necessary) branches `pu` and `tmp` in
175the local repository by fetching from the branches (respectively)
176`pu` and `maint` from the remote repository.
bccf5956 177+
921177f5
CC
178The `pu` branch will be updated even if it is does not fast-forward;
179the others will not be.
bccf5956 180+
33a59fd0 181The final command then merges the newly fetched `tmp` into master.
bccf5956 182
37465016 183
3ae854c3
JH
184If you tried a pull which resulted in a complex conflicts and
185would want to start over, you can recover with
5162e697 186linkgit:git-reset[1].
3ae854c3
JH
187
188
fdd08979
JH
189SEE ALSO
190--------
5162e697 191linkgit:git-fetch[1], linkgit:git-merge[1], linkgit:git-config[1]
fdd08979
JH
192
193
2cf565c5
DG
194Author
195------
3f971fc4
JH
196Written by Linus Torvalds <torvalds@osdl.org>
197and Junio C Hamano <junkio@cox.net>
2cf565c5
DG
198
199Documentation
200--------------
bccf5956
JL
201Documentation by Jon Loeliger,
202David Greaves,
203Junio C Hamano and the git-list <git@vger.kernel.org>.
2cf565c5
DG
204
205GIT
206---
9e1f0a85 207Part of the linkgit:git[1] suite