Commit | Line | Data |
---|---|---|
215a7ad1 JH |
1 | git-checkout(1) |
2 | =============== | |
7fc9d69f JH |
3 | |
4 | NAME | |
5 | ---- | |
76ce9462 | 6 | git-checkout - Checkout a branch or paths to the working tree |
7fc9d69f JH |
7 | |
8 | SYNOPSIS | |
9 | -------- | |
71bb1033 | 10 | [verse] |
76cfadfc JK |
11 | 'git checkout' [-q] [-f] [-m] [<branch>] |
12 | 'git checkout' [-q] [-f] [-m] [-b <new_branch>] [<start_point>] | |
eac5a401 | 13 | 'git checkout' [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] [--] <paths>... |
4f353658 | 14 | 'git checkout' --patch [<tree-ish>] [--] [<paths>...] |
7fc9d69f JH |
15 | |
16 | DESCRIPTION | |
17 | ----------- | |
4aaa7027 | 18 | |
71bb1033 | 19 | When <paths> are not given, this command switches branches by |
76cfadfc JK |
20 | updating the index, working tree, and HEAD to reflect the specified |
21 | branch. | |
4aaa7027 | 22 | |
76cfadfc JK |
23 | If `-b` is given, a new branch is created and checked out, as if |
24 | linkgit:git-branch[1] were called; in this case you can | |
25 | use the --track or --no-track options, which will be passed to `git | |
26 | branch`. As a convenience, --track without `-b` implies branch | |
27 | creation; see the description of --track below. | |
bb0ceb62 | 28 | |
4f353658 | 29 | When <paths> or --patch are given, this command does *not* switch |
4aaa7027 | 30 | branches. It updates the named paths in the working tree from |
ecc03c1c | 31 | the index file, or from a named <tree-ish> (most often a commit). In |
c7cb12b8 MG |
32 | this case, the `-b` and `--track` options are meaningless and giving |
33 | either of them results in an error. The <tree-ish> argument can be | |
84a978f1 JH |
34 | used to specify a specific tree-ish (i.e. commit, tag or tree) |
35 | to update the index for the given paths before updating the | |
36 | working tree. | |
4aaa7027 | 37 | |
db941099 JH |
38 | The index may contain unmerged entries after a failed merge. By |
39 | default, if you try to check out such an entry from the index, the | |
40 | checkout operation will fail and nothing will be checked out. | |
38901a48 JH |
41 | Using -f will ignore these unmerged entries. The contents from a |
42 | specific side of the merge can be checked out of the index by | |
0cf8581e JH |
43 | using --ours or --theirs. With -m, changes made to the working tree |
44 | file can be discarded to recreate the original conflicted merge result. | |
7fc9d69f JH |
45 | |
46 | OPTIONS | |
47 | ------- | |
6124aee5 | 48 | -q:: |
f7aec129 | 49 | --quiet:: |
2be7fcb4 | 50 | Quiet, suppress feedback messages. |
6124aee5 | 51 | |
0270f7c5 | 52 | -f:: |
f7aec129 | 53 | --force:: |
db941099 JH |
54 | When switching branches, proceed even if the index or the |
55 | working tree differs from HEAD. This is used to throw away | |
56 | local changes. | |
57 | + | |
58 | When checking out paths from the index, do not fail upon unmerged | |
59 | entries; instead, unmerged entries are ignored. | |
0270f7c5 | 60 | |
38901a48 JH |
61 | --ours:: |
62 | --theirs:: | |
63 | When checking out paths from the index, check out stage #2 | |
64 | ('ours') or #3 ('theirs') for unmerged paths. | |
0270f7c5 LAS |
65 | |
66 | -b:: | |
2b1f4247 | 67 | Create a new branch named <new_branch> and start it at |
76cfadfc | 68 | <start_point>; see linkgit:git-branch[1] for details. |
7fc9d69f | 69 | |
3240240f SB |
70 | -t:: |
71 | --track:: | |
26d22dc6 JK |
72 | When creating a new branch, set up "upstream" configuration. See |
73 | "--track" in linkgit:git-branch[1] for details. | |
bb0ceb62 | 74 | + |
c7cb12b8 MG |
75 | If no '-b' option is given, the name of the new branch will be |
76 | derived from the remote branch. If "remotes/" or "refs/remotes/" | |
77 | is prefixed it is stripped away, and then the part up to the | |
9188ed89 AR |
78 | next slash (which would be the nickname of the remote) is removed. |
79 | This would tell us to use "hack" as the local branch when branching | |
80 | off of "origin/hack" (or "remotes/origin/hack", or even | |
81 | "refs/remotes/origin/hack"). If the given name has no slash, or the above | |
82 | guessing results in an empty name, the guessing is aborted. You can | |
971e8352 | 83 | explicitly give a name with '-b' in such a case. |
0746d19a PB |
84 | |
85 | --no-track:: | |
167d7445 | 86 | Do not set up "upstream" configuration, even if the |
70e96647 | 87 | branch.autosetupmerge configuration variable is true. |
0746d19a | 88 | |
969d326d | 89 | -l:: |
26d22dc6 JK |
90 | Create the new branch's reflog; see linkgit:git-branch[1] for |
91 | details. | |
969d326d | 92 | |
1be0659e | 93 | -m:: |
eac5a401 | 94 | --merge:: |
0cf8581e JH |
95 | When switching branches, |
96 | if you have local modifications to one or more files that | |
71bb1033 JL |
97 | are different between the current branch and the branch to |
98 | which you are switching, the command refuses to switch | |
99 | branches in order to preserve your modifications in context. | |
100 | However, with this option, a three-way merge between the current | |
1be0659e JH |
101 | branch, your working tree contents, and the new branch |
102 | is done, and you will be on the new branch. | |
103 | + | |
104 | When a merge conflict happens, the index entries for conflicting | |
105 | paths are left unmerged, and you need to resolve the conflicts | |
d7f078b8 SP |
106 | and mark the resolved paths with `git add` (or `git rm` if the merge |
107 | should result in deletion of the path). | |
0cf8581e JH |
108 | + |
109 | When checking out paths from the index, this option lets you recreate | |
110 | the conflicted merge in the specified paths. | |
1be0659e | 111 | |
eac5a401 JH |
112 | --conflict=<style>:: |
113 | The same as --merge option above, but changes the way the | |
114 | conflicting hunks are presented, overriding the | |
115 | merge.conflictstyle configuration variable. Possible values are | |
116 | "merge" (default) and "diff3" (in addition to what is shown by | |
117 | "merge" style, shows the original contents). | |
1be0659e | 118 | |
4f353658 TR |
119 | -p:: |
120 | --patch:: | |
121 | Interactively select hunks in the difference between the | |
122 | <tree-ish> (or the index, if unspecified) and the working | |
123 | tree. The chosen hunks are then applied in reverse to the | |
124 | working tree (and if a <tree-ish> was specified, the index). | |
125 | + | |
126 | This means that you can use `git checkout -p` to selectively discard | |
127 | edits from your current working tree. | |
128 | ||
0270f7c5 | 129 | <branch>:: |
0808723b JK |
130 | Branch to checkout; if it refers to a branch (i.e., a name that, |
131 | when prepended with "refs/heads/", is a valid ref), then that | |
132 | branch is checked out. Otherwise, if it refers to a valid | |
133 | commit, your HEAD becomes "detached" and you are no longer on | |
134 | any branch (see below for details). | |
696acf45 | 135 | + |
dcb11263 | 136 | As a special case, the `"@\{-N\}"` syntax for the N-th last branch |
696acf45 | 137 | checks out the branch (instead of detaching). You may also specify |
dcb11263 | 138 | `-` which is synonymous with `"@\{-1\}"`. |
5e1a2e8c | 139 | |
76cfadfc JK |
140 | <new_branch>:: |
141 | Name for the new branch. | |
142 | ||
143 | <start_point>:: | |
144 | The name of a commit at which to start the new branch; see | |
145 | linkgit:git-branch[1] for details. Defaults to HEAD. | |
146 | ||
147 | <tree-ish>:: | |
148 | Tree to checkout from (when paths are given). If not specified, | |
149 | the index will be used. | |
150 | ||
151 | ||
5e1a2e8c JH |
152 | |
153 | Detached HEAD | |
154 | ------------- | |
155 | ||
156 | It is sometimes useful to be able to 'checkout' a commit that is | |
157 | not at the tip of one of your branches. The most obvious | |
158 | example is to check out the commit at a tagged official release | |
159 | point, like this: | |
160 | ||
161 | ------------ | |
162 | $ git checkout v2.6.18 | |
163 | ------------ | |
164 | ||
165 | Earlier versions of git did not allow this and asked you to | |
c7cb12b8 | 166 | create a temporary branch using the `-b` option, but starting from |
5e1a2e8c | 167 | version 1.5.0, the above command 'detaches' your HEAD from the |
c7cb12b8 MG |
168 | current branch and directly points at the commit named by the tag |
169 | (`v2.6.18` in the example above). | |
5e1a2e8c | 170 | |
c7cb12b8 | 171 | You can use all git commands while in this state. You can use |
b1889c36 | 172 | `git reset --hard $othercommit` to further move around, for |
5e1a2e8c JH |
173 | example. You can make changes and create a new commit on top of |
174 | a detached HEAD. You can even create a merge by using `git | |
175 | merge $othercommit`. | |
176 | ||
177 | The state you are in while your HEAD is detached is not recorded | |
178 | by any branch (which is natural --- you are not on any branch). | |
179 | What this means is that you can discard your temporary commits | |
180 | and merges by switching back to an existing branch (e.g. `git | |
181 | checkout master`), and a later `git prune` or `git gc` would | |
cec8d146 JH |
182 | garbage-collect them. If you did this by mistake, you can ask |
183 | the reflog for HEAD where you were, e.g. | |
184 | ||
185 | ------------ | |
186 | $ git log -g -2 HEAD | |
187 | ------------ | |
7fc9d69f | 188 | |
4aaa7027 | 189 | |
1be0659e JH |
190 | EXAMPLES |
191 | -------- | |
4aaa7027 | 192 | |
1be0659e | 193 | . The following sequence checks out the `master` branch, reverts |
4aaa7027 JH |
194 | the `Makefile` to two revisions back, deletes hello.c by |
195 | mistake, and gets it back from the index. | |
1be0659e | 196 | + |
4aaa7027 | 197 | ------------ |
48aeecdc SE |
198 | $ git checkout master <1> |
199 | $ git checkout master~2 Makefile <2> | |
4aaa7027 | 200 | $ rm -f hello.c |
48aeecdc SE |
201 | $ git checkout hello.c <3> |
202 | ------------ | |
203 | + | |
1e2ccd3a | 204 | <1> switch branch |
c7cb12b8 | 205 | <2> take a file out of another commit |
ce8936c3 | 206 | <3> restore hello.c from the index |
1be0659e | 207 | + |
48aeecdc SE |
208 | If you have an unfortunate branch that is named `hello.c`, this |
209 | step would be confused as an instruction to switch to that branch. | |
210 | You should instead write: | |
1be0659e | 211 | + |
4aaa7027 JH |
212 | ------------ |
213 | $ git checkout -- hello.c | |
214 | ------------ | |
215 | ||
c7cb12b8 | 216 | . After working in the wrong branch, switching to the correct |
71bb1033 | 217 | branch would be done using: |
1be0659e JH |
218 | + |
219 | ------------ | |
220 | $ git checkout mytopic | |
221 | ------------ | |
222 | + | |
223 | However, your "wrong" branch and correct "mytopic" branch may | |
c7cb12b8 | 224 | differ in files that you have modified locally, in which case |
1be0659e JH |
225 | the above checkout would fail like this: |
226 | + | |
227 | ------------ | |
228 | $ git checkout mytopic | |
229 | fatal: Entry 'frotz' not uptodate. Cannot merge. | |
230 | ------------ | |
231 | + | |
232 | You can give the `-m` flag to the command, which would try a | |
233 | three-way merge: | |
234 | + | |
235 | ------------ | |
236 | $ git checkout -m mytopic | |
237 | Auto-merging frotz | |
238 | ------------ | |
239 | + | |
240 | After this three-way merge, the local modifications are _not_ | |
241 | registered in your index file, so `git diff` would show you what | |
242 | changes you made since the tip of the new branch. | |
243 | ||
244 | . When a merge conflict happens during switching branches with | |
245 | the `-m` option, you would see something like this: | |
246 | + | |
247 | ------------ | |
248 | $ git checkout -m mytopic | |
249 | Auto-merging frotz | |
1be0659e JH |
250 | ERROR: Merge conflict in frotz |
251 | fatal: merge program failed | |
252 | ------------ | |
253 | + | |
254 | At this point, `git diff` shows the changes cleanly merged as in | |
255 | the previous example, as well as the changes in the conflicted | |
256 | files. Edit and resolve the conflict and mark it resolved with | |
d7f078b8 | 257 | `git add` as usual: |
1be0659e JH |
258 | + |
259 | ------------ | |
260 | $ edit frotz | |
d7f078b8 | 261 | $ git add frotz |
1be0659e JH |
262 | ------------ |
263 | ||
4aaa7027 | 264 | |
7fc9d69f JH |
265 | Author |
266 | ------ | |
267 | Written by Linus Torvalds <torvalds@osdl.org> | |
268 | ||
269 | Documentation | |
270 | -------------- | |
271 | Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. | |
272 | ||
273 | GIT | |
274 | --- | |
9e1f0a85 | 275 | Part of the linkgit:git[1] suite |