git-gui: fix usage of themed widgets variable
[git/dscho.git] / Documentation / git-pull.txt
blobab4de103586e8382801dad7de2f43c57f4758e7e
1 git-pull(1)
2 ===========
4 NAME
5 ----
6 git-pull - Fetch from and merge with another repository or a local branch
9 SYNOPSIS
10 --------
11 'git pull' <options> <repository> <refspec>...
14 DESCRIPTION
15 -----------
16 Runs 'git fetch' with the given parameters, and calls 'git merge'
17 to merge the retrieved head(s) into the current branch.
18 With `--rebase`, calls 'git rebase' instead of 'git merge'.
20 Note that you can use `.` (current directory) as the
21 <repository> to pull from the local repository -- this is useful
22 when merging local branches into the current branch.
24 Also note that options meant for 'git pull' itself and underlying
25 'git merge' must be given before the options meant for 'git fetch'.
27 *Warning*: Running 'git pull' (actually, the underlying 'git merge')
28 with uncommitted changes is discouraged: while possible, it leaves you
29 in a state that is hard to back out of in the case of a conflict.
31 OPTIONS
32 -------
34 -q::
35 --quiet::
36         This is passed to both underlying git-fetch to squelch reporting of
37         during transfer, and underlying git-merge to squelch output during
38         merging.
40 -v::
41 --verbose::
42         Pass --verbose to git-fetch and git-merge.
44 Options related to merging
45 ~~~~~~~~~~~~~~~~~~~~~~~~~~
47 include::merge-options.txt[]
49 :git-pull: 1
51 --rebase::
52         Instead of a merge, perform a rebase after fetching.  If
53         there is a remote ref for the upstream branch, and this branch
54         was rebased since last fetched, the rebase uses that information
55         to avoid rebasing non-local changes. To make this the default
56         for branch `<name>`, set configuration `branch.<name>.rebase`
57         to `true`.
59 [NOTE]
60 This is a potentially _dangerous_ mode of operation.
61 It rewrites history, which does not bode well when you
62 published that history already.  Do *not* use this option
63 unless you have read linkgit:git-rebase[1] carefully.
65 --no-rebase::
66         Override earlier --rebase.
68 Options related to fetching
69 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
71 include::fetch-options.txt[]
73 include::pull-fetch-param.txt[]
75 include::urls-remotes.txt[]
77 include::merge-strategies.txt[]
79 DEFAULT BEHAVIOUR
80 -----------------
82 Often people use `git pull` without giving any parameter.
83 Traditionally, this has been equivalent to saying `git pull
84 origin`.  However, when configuration `branch.<name>.remote` is
85 present while on branch `<name>`, that value is used instead of
86 `origin`.
88 In order to determine what URL to use to fetch from, the value
89 of the configuration `remote.<origin>.url` is consulted
90 and if there is not any such variable, the value on `URL: ` line
91 in `$GIT_DIR/remotes/<origin>` file is used.
93 In order to determine what remote branches to fetch (and
94 optionally store in the tracking branches) when the command is
95 run without any refspec parameters on the command line, values
96 of the configuration variable `remote.<origin>.fetch` are
97 consulted, and if there aren't any, `$GIT_DIR/remotes/<origin>`
98 file is consulted and its `Pull: ` lines are used.
99 In addition to the refspec formats described in the OPTIONS
100 section, you can have a globbing refspec that looks like this:
102 ------------
103 refs/heads/*:refs/remotes/origin/*
104 ------------
106 A globbing refspec must have a non-empty RHS (i.e. must store
107 what were fetched in tracking branches), and its LHS and RHS
108 must end with `/*`.  The above specifies that all remote
109 branches are tracked using tracking branches in
110 `refs/remotes/origin/` hierarchy under the same name.
112 The rule to determine which remote branch to merge after
113 fetching is a bit involved, in order not to break backward
114 compatibility.
116 If explicit refspecs were given on the command
117 line of `git pull`, they are all merged.
119 When no refspec was given on the command line, then `git pull`
120 uses the refspec from the configuration or
121 `$GIT_DIR/remotes/<origin>`.  In such cases, the following
122 rules apply:
124 . If `branch.<name>.merge` configuration for the current
125   branch `<name>` exists, that is the name of the branch at the
126   remote site that is merged.
128 . If the refspec is a globbing one, nothing is merged.
130 . Otherwise the remote branch of the first refspec is merged.
133 EXAMPLES
134 --------
136 * Update the remote-tracking branches for the repository
137   you cloned from, then merge one of them into your
138   current branch:
140 ------------------------------------------------
141 $ git pull, git pull origin
142 ------------------------------------------------
144 Normally the branch merged in is the HEAD of the remote repository,
145 but the choice is determined by the branch.<name>.remote and
146 branch.<name>.merge options; see linkgit:git-config[1] for details.
148 * Merge into the current branch the remote branch `next`:
150 ------------------------------------------------
151 $ git pull origin next
152 ------------------------------------------------
154 This leaves a copy of `next` temporarily in FETCH_HEAD, but
155 does not update any remote-tracking branches. Using remote-tracking
156 branches, the same can be done by invoking fetch and merge:
158 ------------------------------------------------
159 $ git fetch origin
160 $ git merge origin/next
161 ------------------------------------------------
164 If you tried a pull which resulted in a complex conflicts and
165 would want to start over, you can recover with 'git reset'.
168 SEE ALSO
169 --------
170 linkgit:git-fetch[1], linkgit:git-merge[1], linkgit:git-config[1]
173 Author
174 ------
175 Written by Linus Torvalds <torvalds@osdl.org>
176 and Junio C Hamano <gitster@pobox.com>
178 Documentation
179 --------------
180 Documentation by Jon Loeliger,
181 David Greaves,
182 Junio C Hamano and the git-list <git@vger.kernel.org>.
186 Part of the linkgit:git[1] suite