9c78057fd30c39110a06b3ac6ae3ad1a635daf94
[git.git] / man1 / git-pull.1
1 .\"Generated by db2man.xsl. Don't modify this, modify the source.
2 .de Sh \" Subsection
3 .br
4 .if t .Sp
5 .ne 5
6 .PP
7 \fB\\$1\fR
8 .PP
9 ..
10 .de Sp \" Vertical space (when we can't use .PP)
11 .if t .sp .5v
12 .if n .sp
13 ..
14 .de Ip \" List item
15 .br
16 .ie \\n(.$>=3 .ne \\$3
17 .el .ne 3
18 .IP "\\$1" \\$2
19 ..
20 .TH "GIT-PULL" 1 "" "" ""
21 .SH NAME
22 git-pull \- Pull and merge from another repository.
23 .SH "SYNOPSIS"
24
25
26 \fIgit\-pull\fR <options> <repository> <refspec>...
27
28 .SH "DESCRIPTION"
29
30
31 Runs git\-fetch with the given parameters, and calls git\-merge to merge the retrieved head(s) into the current branch\&.
32
33
34 Note that you can use \&. (current directory) as the <repository> to pull from the local repository -- this is useful when merging local branches into the current branch\&.
35
36 .SH "OPTIONS"
37
38 .TP
39 \-n, \-\-no\-summary
40 Do not show diffstat at the end of the merge\&.
41
42 .TP
43 \-\-no\-commit
44 Perform the merge but pretend the merge failed and do not autocommit, to give the user a chance to inspect and further tweak the merge result before committing\&.
45
46 .TP
47 \-s <strategy>, \-\-strategy=<strategy>
48 Use the given merge strategy; can be supplied more than once to specify them in the order they should be tried\&. If there is no \-s option, a built\-in list of strategies is used instead (git\-merge\-recursive when merging a single head, git\-merge\-octopus otherwise)\&.
49
50 .TP
51 \-a, \-\-append
52 Append ref names and object names of fetched refs to the existing contents of \&.git/FETCH_HEAD\&. Without this option old data in \&.git/FETCH_HEAD will be overwritten\&.
53
54 .TP
55 \-\-upload\-pack <upload\-pack>
56 When given, and the repository to fetch from is handled by \fIgit\-fetch\-pack\fR, \fI\-\-exec=<upload\-pack>\fR is passed to the command to specify non\-default path for the command run on the other end\&.
57
58 .TP
59 \-f, \-\-force
60 When git\-fetch is used with <rbranch>:<lbranch> refspec, it refuses to update the local branch <lbranch> unless the remote branch <rbranch> it fetches is a descendant of <lbranch>\&. This option overrides that check\&.
61
62 .TP
63 \-\-no\-tags
64 By default, git\-fetch fetches tags that point at objects that are downloaded from the remote repository and stores them locally\&. This option disables this automatic tag following\&.
65
66 .TP
67 \-t, \-\-tags
68 Most of the tags are fetched automatically as branch heads are downloaded, but tags that do not point at objects reachable from the branch heads that are being tracked will not be fetched by this mechanism\&. This flag lets all tags and their associated objects be downloaded\&.
69
70 .TP
71 \-k, \-\-keep
72 Keep downloaded pack\&.
73
74 .TP
75 \-u, \-\-update\-head\-ok
76 By default git\-fetch refuses to update the head which corresponds to the current branch\&. This flag disables the check\&. Note that fetching into the current branch will not update the index and working directory, so use it with care\&.
77
78 .TP
79 <repository>
80 The "remote" repository that is the source of a fetch or pull operation\&. See the section GIT URLS below\&.
81
82 .TP
83 <refspec>
84 The canonical format of a <refspec> parameter is +?<src>:<dst>; that is, an optional plus +, followed by the source ref, followed by a colon :, followed by the destination ref\&.
85
86 The remote ref that matches <src> is fetched, and if <dst> is not empty string, the local ref that matches it is fast forwarded using <src>\&. Again, if the optional plus + is used, the local ref is updated even if it does not result in a fast forward update\&.
87
88
89 .RS
90 .Sh "Note"
91 If the remote branch from which you want to pull is modified in non\-linear ways such as being rewound and rebased frequently, then a pull will attempt a merge with an older version of itself, likely conflict, and fail\&. It is under these conditions that you would want to use the + sign to indicate non\-fast\-forward updates will be needed\&. There is currently no easy way to determine or declare that a branch will be made available in a repository with this behavior; the pulling user simply must know this is the expected usage pattern for a branch\&.
92
93 .RE
94
95 .RS
96 .Sh "Note"
97 You never do your own development on branches that appear on the right hand side of a <refspec> colon on Pull: lines; they are to be updated by git\-fetch\&. If you intend to do development derived from a remote branch B, have a Pull: line to track it (i\&.e\&. Pull: B:remote\-B), and have a separate branch my\-B to do your development on top of it\&. The latter is created by git branch my\-B remote\-B (or its equivalent git checkout \-b my\-B remote\-B)\&. Run git fetch to keep track of the progress of the remote side, and when you see something new on the remote branch, merge it into your development branch with git pull \&. remote\-B, while you are on my\-B branch\&. The common Pull: master:origin mapping of a remote master branch to a local origin branch, which is then merged to a local development branch, again typically named master, is made when you run git clone for you to follow this pattern\&.
98
99 .RE
100
101 .RS
102 .Sh "Note"
103 There is a difference between listing multiple <refspec> directly on git\-pull command line and having multiple Pull: <refspec> lines for a <repository> and running git\-pull command without any explicit <refspec> parameters\&. <refspec> listed explicitly on the command line are always merged into the current branch after fetching\&. In other words, if you list more than one remote refs, you would be making an Octopus\&. While git\-pull run without any explicit <refspec> parameter takes default <refspec>s from Pull: lines, it merges only the first <refspec> found into the current branch, after fetching all the remote refs\&. This is because making an Octopus from remote refs is rarely done, while keeping track of multiple remote heads in one\-go by fetching more than one is often useful\&.
104
105 .RE
106 Some short\-cut notations are also supported\&.
107
108 .RS
109 .TP 3
110 \(bu
111  tag <tag> means the same as refs/tags/<tag>:refs/tags/<tag>; it requests fetching everything up to the given tag\&.
112 .TP
113 \(bu
114 A parameter <ref> without a colon is equivalent to <ref>: when pulling/fetching, so it merges <ref> into the current branch without storing the remote branch anywhere locally
115 .LP
116 .RE
117 .IP
118
119 .SH "GIT URLS"
120
121
122 One of the following notations can be used to name the remote repository:
123
124 .IP
125
126 .TP 3
127 \(bu
128 rsync://host\&.xz/path/to/repo\&.git/
129 .TP
130 \(bu
131 http://host\&.xz/path/to/repo\&.git/
132 .TP
133 \(bu
134 https://host\&.xz/path/to/repo\&.git/
135 .TP
136 \(bu
137 git://host\&.xz/path/to/repo\&.git/
138 .TP
139 \(bu
140 git://host\&.xz/~user/path/to/repo\&.git/
141 .TP
142 \(bu
143 ssh://host\&.xz/path/to/repo\&.git/
144 .TP
145 \(bu
146 ssh://host\&.xz/~user/path/to/repo\&.git/
147 .TP
148 \(bu
149 ssh://host\&.xz/~/path/to/repo\&.git
150 .LP
151
152
153 SSH Is the default transport protocol and also supports an scp\-like syntax\&. Both syntaxes support username expansion, as does the native git protocol\&. The following three are identical to the last three above, respectively:
154
155 .IP
156
157 .TP 3
158 \(bu
159 host\&.xz:/path/to/repo\&.git/
160 .TP
161 \(bu
162 host\&.xz:~user/path/to/repo\&.git/
163 .TP
164 \(bu
165 host\&.xz:path/to/repo\&.git
166 .LP
167
168
169 To sync with a local directory, use:
170
171 .IP
172
173 .TP 3
174 \(bu
175 /path/to/repo\&.git/
176 .LP
177
178 .SH "REMOTES"
179
180
181 In addition to the above, as a short\-hand, the name of a file in $GIT_DIR/remotes directory can be given; the named file should be in the following format:
182
183 .nf
184 URL: one of the above URL format
185 Push: <refspec>
186 Pull: <refspec>
187 .fi
188
189
190 Then such a short\-hand is specified in place of <repository> without <refspec> parameters on the command line, <refspec> specified on Push: lines or Pull: lines are used for git\-push and git\-fetch/git\-pull, respectively\&. Multiple Push: and and Pull: lines may be specified for additional branch mappings\&.
191
192
193 The name of a file in $GIT_DIR/branches directory can be specified as an older notation short\-hand; the named file should contain a single line, a URL in one of the above formats, optionally followed by a hash # and the name of remote head (URL fragment notation)\&. $GIT_DIR/branches/<remote> file that stores a <url> without the fragment is equivalent to have this in the corresponding file in the $GIT_DIR/remotes/ directory\&.
194
195 .nf
196 URL: <url>
197 Pull: refs/heads/master:<remote>
198 .fi
199
200
201 while having <url>#<head> is equivalent to
202
203 .nf
204 URL: <url>
205 Pull: refs/heads/<head>:<remote>
206 .fi
207
208 .SH "MERGE STRATEGIES"
209
210 .TP
211 resolve
212 This can only resolve two heads (i\&.e\&. the current branch and another branch you pulled from) using 3\-way merge algorithm\&. It tries to carefully detect criss\-cross merge ambiguities and is considered generally safe and fast\&.
213
214 .TP
215 recursive
216 This can only resolve two heads using 3\-way merge algorithm\&. When there are more than one common ancestors that can be used for 3\-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3\-way merge\&. This has been reported to result in fewer merge conflicts without causing mis\-merges by tests done on actual merge commits taken from Linux 2\&.6 kernel development history\&. Additionally this can detect and handle merges involving renames\&. This is the default merge strategy when pulling or merging one branch\&.
217
218 .TP
219 octopus
220 This resolves more than two\-head case, but refuses to do complex merge that needs manual resolution\&. It is primarily meant to be used for bundling topic branch heads together\&. This is the default merge strategy when pulling or merging more than one branches\&.
221
222 .TP
223 ours
224 This resolves any number of heads, but the result of the merge is always the current branch head\&. It is meant to be used to supersede old development history of side branches\&.
225
226 .SH "EXAMPLES"
227
228 .TP
229 git pull, git pull origin
230 Fetch the default head from the repository you cloned from and merge it into your current branch\&.
231
232 .TP
233 git pull \-s ours \&. obsolete
234 Merge local branch obsolete into the current branch, using ours merge strategy\&.
235
236 .TP
237 git pull \&. fixes enhancements
238 Bundle local branch fixes and enhancements on top of the current branch, making an Octopus merge\&.
239
240 .TP
241 git pull \-\-no\-commit \&. maint
242 Merge local branch maint into the current branch, but do not make a commit automatically\&. This can be used when you want to include further changes to the merge, or want to write your own merge commit message\&.
243
244 You should refrain from abusing this option to sneak substantial changes into a merge commit\&. Small fixups like bumping release/version name would be acceptable\&.
245
246 .TP
247 Command line pull of multiple branches from one repository
248
249 .IP
250 $ cat \&.git/remotes/origin
251 URL: git://git\&.kernel\&.org/pub/scm/git/git\&.git
252 Pull: master:origin
253
254 $ git checkout master
255 $ git fetch origin master:origin +pu:pu maint:maint
256 $ git pull \&. originHere, a typical \&.git/remotes/origin file from a git\-clone operation is used in combination with command line options to git\-fetch to first update multiple branches of the local repository and then to merge the remote origin branch into the local master branch\&. The local pu branch is updated even if it does not result in a fast forward update\&. Here, the pull can obtain its objects from the local repository using \&., as the previous git\-fetch is known to have already obtained and made available all the necessary objects\&.
257
258 .TP
259 Pull of multiple branches from one repository using \&.git/remotes file
260
261 .IP
262 $ cat \&.git/remotes/origin
263 URL: git://git\&.kernel\&.org/pub/scm/git/git\&.git
264 Pull: master:origin
265 Pull: +pu:pu
266 Pull: maint:maint
267
268 $ git checkout master
269 $ git pull originHere, a typical \&.git/remotes/origin file from a git\-clone operation has been hand\-modified to include the branch\-mapping of additional remote and local heads directly\&. A single git\-pull operation while in the master branch will fetch multiple heads and merge the remote origin head into the current, local master branch\&.
270
271
272 If you tried a pull which resulted in a complex conflicts and would want to start over, you can recover with \fBgit\-reset\fR(1)\&.
273
274 .SH "SEE ALSO"
275
276
277 \fBgit\-fetch\fR(1), \fBgit\-merge\fR(1)
278
279 .SH "AUTHOR"
280
281
282 Written by Linus Torvalds <torvalds@osdl\&.org> and Junio C Hamano <junkio@cox\&.net>
283
284 .SH "DOCUMENTATION"
285
286
287 Documentation by Jon Loeliger, David Greaves, Junio C Hamano and the git\-list <git@vger\&.kernel\&.org>\&.
288
289 .SH "GIT"
290
291
292 Part of the \fBgit\fR(7) suite
293