Autogenerated manpages for v2.34.1-182-ge7735
[git-manpages.git] / man1 / git-checkout.1
blobd6877d264238dd0a1d0695eaae048817a70db497
1 '\" t
2 .\"     Title: git-checkout
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 12/10/2021
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.34.1.182.ge773545c7f
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CHECKOUT" "1" "12/10/2021" "Git 2\&.34\&.1\&.182\&.ge77354" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-checkout \- Switch branches or restore working tree files
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit checkout\fR [\-q] [\-f] [\-m] [<branch>]
36 \fIgit checkout\fR [\-q] [\-f] [\-m] \-\-detach [<branch>]
37 \fIgit checkout\fR [\-q] [\-f] [\-m] [\-\-detach] <commit>
38 \fIgit checkout\fR [\-q] [\-f] [\-m] [[\-b|\-B|\-\-orphan] <new\-branch>] [<start\-point>]
39 \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] [<tree\-ish>] [\-\-] <pathspec>\&...
40 \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] [<tree\-ish>] \-\-pathspec\-from\-file=<file> [\-\-pathspec\-file\-nul]
41 \fIgit checkout\fR (\-p|\-\-patch) [<tree\-ish>] [\-\-] [<pathspec>\&...]
42 .fi
43 .sp
44 .SH "DESCRIPTION"
45 .sp
46 Updates files in the working tree to match the version in the index or the specified tree\&. If no pathspec was given, \fIgit checkout\fR will also update \fBHEAD\fR to set the specified branch as the current branch\&.
47 .PP
48 \fIgit checkout\fR [<branch>]
49 .RS 4
50 To prepare for working on
51 \fB<branch>\fR, switch to it by updating the index and the files in the working tree, and by pointing
52 \fBHEAD\fR
53 at the branch\&. Local modifications to the files in the working tree are kept, so that they can be committed to the
54 \fB<branch>\fR\&.
55 .sp
57 \fB<branch>\fR
58 is not found but there does exist a tracking branch in exactly one remote (call it
59 \fB<remote>\fR) with a matching name and
60 \fB\-\-no\-guess\fR
61 is not specified, treat as equivalent to
62 .sp
63 .if n \{\
64 .RS 4
65 .\}
66 .nf
67 $ git checkout \-b <branch> \-\-track <remote>/<branch>
68 .fi
69 .if n \{\
70 .RE
71 .\}
72 .sp
73 You could omit
74 \fB<branch>\fR, in which case the command degenerates to "check out the current branch", which is a glorified no\-op with rather expensive side\-effects to show only the tracking information, if exists, for the current branch\&.
75 .RE
76 .PP
77 \fIgit checkout\fR \-b|\-B <new\-branch> [<start\-point>]
78 .RS 4
79 Specifying
80 \fB\-b\fR
81 causes a new branch to be created as if
82 \fBgit-branch\fR(1)
83 were called and then checked out\&. In this case you can use the
84 \fB\-\-track\fR
86 \fB\-\-no\-track\fR
87 options, which will be passed to
88 \fIgit branch\fR\&. As a convenience,
89 \fB\-\-track\fR
90 without
91 \fB\-b\fR
92 implies branch creation; see the description of
93 \fB\-\-track\fR
94 below\&.
95 .sp
97 \fB\-B\fR
98 is given,
99 \fB<new\-branch>\fR
100 is created if it doesn\(cqt exist; otherwise, it is reset\&. This is the transactional equivalent of
102 .if n \{\
103 .RS 4
106 $ git branch \-f <branch> [<start\-point>]
107 $ git checkout <branch>
109 .if n \{\
113 that is to say, the branch is not reset/created unless "git checkout" is successful\&.
116 \fIgit checkout\fR \-\-detach [<branch>], \fIgit checkout\fR [\-\-detach] <commit>
117 .RS 4
118 Prepare to work on top of
119 \fB<commit>\fR, by detaching
120 \fBHEAD\fR
121 at it (see "DETACHED HEAD" section), and updating the index and the files in the working tree\&. Local modifications to the files in the working tree are kept, so that the resulting working tree will be the state recorded in the commit plus the local modifications\&.
123 When the
124 \fB<commit>\fR
125 argument is a branch name, the
126 \fB\-\-detach\fR
127 option can be used to detach
128 \fBHEAD\fR
129 at the tip of the branch (\fBgit checkout <branch>\fR
130 would check out that branch without detaching
131 \fBHEAD\fR)\&.
133 Omitting
134 \fB<branch>\fR
135 detaches
136 \fBHEAD\fR
137 at the tip of the current branch\&.
140 \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] [<tree\-ish>] [\-\-] <pathspec>\&..., \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] [<tree\-ish>] \-\-pathspec\-from\-file=<file> [\-\-pathspec\-file\-nul]
141 .RS 4
142 Overwrite the contents of the files that match the pathspec\&. When the
143 \fB<tree\-ish>\fR
144 (most often a commit) is not given, overwrite working tree with the contents in the index\&. When the
145 \fB<tree\-ish>\fR
146 is given, overwrite both the index and the working tree with the contents at the
147 \fB<tree\-ish>\fR\&.
149 The index may contain unmerged entries because of a previous failed merge\&. By default, if you try to check out such an entry from the index, the checkout operation will fail and nothing will be checked out\&. Using
150 \fB\-f\fR
151 will ignore these unmerged entries\&. The contents from a specific side of the merge can be checked out of the index by using
152 \fB\-\-ours\fR
154 \fB\-\-theirs\fR\&. With
155 \fB\-m\fR, changes made to the working tree file can be discarded to re\-create the original conflicted merge result\&.
158 \fIgit checkout\fR (\-p|\-\-patch) [<tree\-ish>] [\-\-] [<pathspec>\&...]
159 .RS 4
160 This is similar to the previous mode, but lets you use the interactive interface to show the "diff" output and choose which hunks to use in the result\&. See below for the description of
161 \fB\-\-patch\fR
162 option\&.
164 .SH "OPTIONS"
166 \-q, \-\-quiet
167 .RS 4
168 Quiet, suppress feedback messages\&.
171 \-\-progress, \-\-no\-progress
172 .RS 4
173 Progress status is reported on the standard error stream by default when it is attached to a terminal, unless
174 \fB\-\-quiet\fR
175 is specified\&. This flag enables progress reporting even if not attached to a terminal, regardless of
176 \fB\-\-quiet\fR\&.
179 \-f, \-\-force
180 .RS 4
181 When switching branches, proceed even if the index or the working tree differs from
182 \fBHEAD\fR, and even if there are untracked files in the way\&. This is used to throw away local changes and any untracked files or directories that are in the way\&.
184 When checking out paths from the index, do not fail upon unmerged entries; instead, unmerged entries are ignored\&.
187 \-\-ours, \-\-theirs
188 .RS 4
189 When checking out paths from the index, check out stage #2 (\fIours\fR) or #3 (\fItheirs\fR) for unmerged paths\&.
191 Note that during
192 \fBgit rebase\fR
194 \fBgit pull \-\-rebase\fR,
195 \fIours\fR
197 \fItheirs\fR
198 may appear swapped;
199 \fB\-\-ours\fR
200 gives the version from the branch the changes are rebased onto, while
201 \fB\-\-theirs\fR
202 gives the version from the branch that holds your work that is being rebased\&.
204 This is because
205 \fBrebase\fR
206 is used in a workflow that treats the history at the remote as the shared canonical one, and treats the work done on the branch you are rebasing as the third\-party work to be integrated, and you are temporarily assuming the role of the keeper of the canonical history during the rebase\&. As the keeper of the canonical history, you need to view the history from the remote as
207 \fBours\fR
208 (i\&.e\&. "our shared canonical history"), while what you did on your side branch as
209 \fBtheirs\fR
210 (i\&.e\&. "one contributor\(cqs work on top of it")\&.
213 \-b <new\-branch>
214 .RS 4
215 Create a new branch named
216 \fB<new\-branch>\fR
217 and start it at
218 \fB<start\-point>\fR; see
219 \fBgit-branch\fR(1)
220 for details\&.
223 \-B <new\-branch>
224 .RS 4
225 Creates the branch
226 \fB<new\-branch>\fR
227 and start it at
228 \fB<start\-point>\fR; if it already exists, then reset it to
229 \fB<start\-point>\fR\&. This is equivalent to running "git branch" with "\-f"; see
230 \fBgit-branch\fR(1)
231 for details\&.
234 \-t, \-\-track
235 .RS 4
236 When creating a new branch, set up "upstream" configuration\&. See "\-\-track" in
237 \fBgit-branch\fR(1)
238 for details\&.
240 If no
241 \fB\-b\fR
242 option is given, the name of the new branch will be derived from the remote\-tracking branch, by looking at the local part of the refspec configured for the corresponding remote, and then stripping the initial part up to the "*"\&. This would tell us to use
243 \fBhack\fR
244 as the local branch when branching off of
245 \fBorigin/hack\fR
247 \fBremotes/origin/hack\fR, or even
248 \fBrefs/remotes/origin/hack\fR)\&. If the given name has no slash, or the above guessing results in an empty name, the guessing is aborted\&. You can explicitly give a name with
249 \fB\-b\fR
250 in such a case\&.
253 \-\-no\-track
254 .RS 4
255 Do not set up "upstream" configuration, even if the
256 \fBbranch\&.autoSetupMerge\fR
257 configuration variable is true\&.
260 \-\-guess, \-\-no\-guess
261 .RS 4
263 \fB<branch>\fR
264 is not found but there does exist a tracking branch in exactly one remote (call it
265 \fB<remote>\fR) with a matching name, treat as equivalent to
267 .if n \{\
268 .RS 4
271 $ git checkout \-b <branch> \-\-track <remote>/<branch>
273 .if n \{\
277 If the branch exists in multiple remotes and one of them is named by the
278 \fBcheckout\&.defaultRemote\fR
279 configuration variable, we\(cqll use that one for the purposes of disambiguation, even if the
280 \fB<branch>\fR
281 isn\(cqt unique across all remotes\&. Set it to e\&.g\&.
282 \fBcheckout\&.defaultRemote=origin\fR
283 to always checkout remote branches from there if
284 \fB<branch>\fR
285 is ambiguous but exists on the
286 \fIorigin\fR
287 remote\&. See also
288 \fBcheckout\&.defaultRemote\fR
290 \fBgit-config\fR(1)\&.
292 \fB\-\-guess\fR
293 is the default behavior\&. Use
294 \fB\-\-no\-guess\fR
295 to disable it\&.
297 The default behavior can be set via the
298 \fBcheckout\&.guess\fR
299 configuration variable\&.
303 .RS 4
304 Create the new branch\(cqs reflog; see
305 \fBgit-branch\fR(1)
306 for details\&.
309 \-d, \-\-detach
310 .RS 4
311 Rather than checking out a branch to work on it, check out a commit for inspection and discardable experiments\&. This is the default behavior of
312 \fBgit checkout <commit>\fR
313 when
314 \fB<commit>\fR
315 is not a branch name\&. See the "DETACHED HEAD" section below for details\&.
318 \-\-orphan <new\-branch>
319 .RS 4
320 Create a new
321 \fIorphan\fR
322 branch, named
323 \fB<new\-branch>\fR, started from
324 \fB<start\-point>\fR
325 and switch to it\&. The first commit made on this new branch will have no parents and it will be the root of a new history totally disconnected from all the other branches and commits\&.
327 The index and the working tree are adjusted as if you had previously run
328 \fBgit checkout <start\-point>\fR\&. This allows you to start a new history that records a set of paths similar to
329 \fB<start\-point>\fR
330 by easily running
331 \fBgit commit \-a\fR
332 to make the root commit\&.
334 This can be useful when you want to publish the tree from a commit without exposing its full history\&. You might want to do this to publish an open source branch of a project whose current tree is "clean", but whose full history contains proprietary or otherwise encumbered bits of code\&.
336 If you want to start a disconnected history that records a set of paths that is totally different from the one of
337 \fB<start\-point>\fR, then you should clear the index and the working tree right after creating the orphan branch by running
338 \fBgit rm \-rf \&.\fR
339 from the top level of the working tree\&. Afterwards you will be ready to prepare your new files, repopulating the working tree, by copying them from elsewhere, extracting a tarball, etc\&.
342 \-\-ignore\-skip\-worktree\-bits
343 .RS 4
344 In sparse checkout mode,
345 \fBgit checkout \-\- <paths>\fR
346 would update only entries matched by
347 \fB<paths>\fR
348 and sparse patterns in
349 \fB$GIT_DIR/info/sparse\-checkout\fR\&. This option ignores the sparse patterns and adds back any files in
350 \fB<paths>\fR\&.
353 \-m, \-\-merge
354 .RS 4
355 When switching branches, if you have local modifications to one or more files that are different between the current branch and the branch to which you are switching, the command refuses to switch branches in order to preserve your modifications in context\&. However, with this option, a three\-way merge between the current branch, your working tree contents, and the new branch is done, and you will be on the new branch\&.
357 When a merge conflict happens, the index entries for conflicting paths are left unmerged, and you need to resolve the conflicts and mark the resolved paths with
358 \fBgit add\fR
360 \fBgit rm\fR
361 if the merge should result in deletion of the path)\&.
363 When checking out paths from the index, this option lets you recreate the conflicted merge in the specified paths\&.
365 When switching branches with
366 \fB\-\-merge\fR, staged changes may be lost\&.
369 \-\-conflict=<style>
370 .RS 4
371 The same as
372 \fB\-\-merge\fR
373 option above, but changes the way the conflicting hunks are presented, overriding the
374 \fBmerge\&.conflictStyle\fR
375 configuration variable\&. Possible values are "merge" (default) and "diff3" (in addition to what is shown by "merge" style, shows the original contents)\&.
378 \-p, \-\-patch
379 .RS 4
380 Interactively select hunks in the difference between the
381 \fB<tree\-ish>\fR
382 (or the index, if unspecified) and the working tree\&. The chosen hunks are then applied in reverse to the working tree (and if a
383 \fB<tree\-ish>\fR
384 was specified, the index)\&.
386 This means that you can use
387 \fBgit checkout \-p\fR
388 to selectively discard edits from your current working tree\&. See the \(lqInteractive Mode\(rq section of
389 \fBgit-add\fR(1)
390 to learn how to operate the
391 \fB\-\-patch\fR
392 mode\&.
394 Note that this option uses the no overlay mode by default (see also
395 \fB\-\-overlay\fR), and currently doesn\(cqt support overlay mode\&.
398 \-\-ignore\-other\-worktrees
399 .RS 4
400 \fBgit checkout\fR
401 refuses when the wanted ref is already checked out by another worktree\&. This option makes it check the ref out anyway\&. In other words, the ref can be held by more than one worktree\&.
404 \-\-overwrite\-ignore, \-\-no\-overwrite\-ignore
405 .RS 4
406 Silently overwrite ignored files when switching branches\&. This is the default behavior\&. Use
407 \fB\-\-no\-overwrite\-ignore\fR
408 to abort the operation when the new branch contains ignored files\&.
411 \-\-recurse\-submodules, \-\-no\-recurse\-submodules
412 .RS 4
413 Using
414 \fB\-\-recurse\-submodules\fR
415 will update the content of all active submodules according to the commit recorded in the superproject\&. If local modifications in a submodule would be overwritten the checkout will fail unless
416 \fB\-f\fR
417 is used\&. If nothing (or
418 \fB\-\-no\-recurse\-submodules\fR) is used, submodules working trees will not be updated\&. Just like
419 \fBgit-submodule\fR(1), this will detach
420 \fBHEAD\fR
421 of the submodule\&.
424 \-\-overlay, \-\-no\-overlay
425 .RS 4
426 In the default overlay mode,
427 \fBgit checkout\fR
428 never removes files from the index or the working tree\&. When specifying
429 \fB\-\-no\-overlay\fR, files that appear in the index and working tree, but not in
430 \fB<tree\-ish>\fR
431 are removed, to make them match
432 \fB<tree\-ish>\fR
433 exactly\&.
436 \-\-pathspec\-from\-file=<file>
437 .RS 4
438 Pathspec is passed in
439 \fB<file>\fR
440 instead of commandline args\&. If
441 \fB<file>\fR
442 is exactly
443 \fB\-\fR
444 then standard input is used\&. Pathspec elements are separated by LF or CR/LF\&. Pathspec elements can be quoted as explained for the configuration variable
445 \fBcore\&.quotePath\fR
446 (see
447 \fBgit-config\fR(1))\&. See also
448 \fB\-\-pathspec\-file\-nul\fR
449 and global
450 \fB\-\-literal\-pathspecs\fR\&.
453 \-\-pathspec\-file\-nul
454 .RS 4
455 Only meaningful with
456 \fB\-\-pathspec\-from\-file\fR\&. Pathspec elements are separated with NUL character and all other characters are taken literally (including newlines and quotes)\&.
459 <branch>
460 .RS 4
461 Branch to checkout; if it refers to a branch (i\&.e\&., a name that, when prepended with "refs/heads/", is a valid ref), then that branch is checked out\&. Otherwise, if it refers to a valid commit, your
462 \fBHEAD\fR
463 becomes "detached" and you are no longer on any branch (see below for details)\&.
465 You can use the
466 \fB@{\-N}\fR
467 syntax to refer to the N\-th last branch/commit checked out using "git checkout" operation\&. You may also specify
468 \fB\-\fR
469 which is synonymous to
470 \fB@{\-1}\fR\&.
472 As a special case, you may use
473 \fBA\&.\&.\&.B\fR
474 as a shortcut for the merge base of
475 \fBA\fR
477 \fBB\fR
478 if there is exactly one merge base\&. You can leave out at most one of
479 \fBA\fR
481 \fBB\fR, in which case it defaults to
482 \fBHEAD\fR\&.
485 <new\-branch>
486 .RS 4
487 Name for the new branch\&.
490 <start\-point>
491 .RS 4
492 The name of a commit at which to start the new branch; see
493 \fBgit-branch\fR(1)
494 for details\&. Defaults to
495 \fBHEAD\fR\&.
497 As a special case, you may use
498 \fB"A\&.\&.\&.B"\fR
499 as a shortcut for the merge base of
500 \fBA\fR
502 \fBB\fR
503 if there is exactly one merge base\&. You can leave out at most one of
504 \fBA\fR
506 \fBB\fR, in which case it defaults to
507 \fBHEAD\fR\&.
510 <tree\-ish>
511 .RS 4
512 Tree to checkout from (when paths are given)\&. If not specified, the index will be used\&.
514 As a special case, you may use
515 \fB"A\&.\&.\&.B"\fR
516 as a shortcut for the merge base of
517 \fBA\fR
519 \fBB\fR
520 if there is exactly one merge base\&. You can leave out at most one of
521 \fBA\fR
523 \fBB\fR, in which case it defaults to
524 \fBHEAD\fR\&.
527 \-\-
528 .RS 4
529 Do not interpret any more arguments as options\&.
532 <pathspec>\&...
533 .RS 4
534 Limits the paths affected by the operation\&.
536 For more details, see the
537 \fIpathspec\fR
538 entry in
539 \fBgitglossary\fR(7)\&.
541 .SH "DETACHED HEAD"
543 \fBHEAD\fR normally refers to a named branch (e\&.g\&. \fBmaster\fR)\&. Meanwhile, each branch refers to a specific commit\&. Let\(cqs look at a repo with three commits, one of them tagged, and with branch \fBmaster\fR checked out:
545 .if n \{\
546 .RS 4
549            HEAD (refers to branch \(aqmaster\(aq)
550             |
551             v
552 a\-\-\-b\-\-\-c  branch \(aqmaster\(aq (refers to commit \(aqc\(aq)
553     ^
554     |
555   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
557 .if n \{\
562 When a commit is created in this state, the branch is updated to refer to the new commit\&. Specifically, \fIgit commit\fR creates a new commit \fBd\fR, whose parent is commit \fBc\fR, and then updates branch \fBmaster\fR to refer to new commit \fBd\fR\&. \fBHEAD\fR still refers to branch \fBmaster\fR and so indirectly now refers to commit \fBd\fR:
564 .if n \{\
565 .RS 4
568 $ edit; git add; git commit
570                HEAD (refers to branch \(aqmaster\(aq)
571                 |
572                 v
573 a\-\-\-b\-\-\-c\-\-\-d  branch \(aqmaster\(aq (refers to commit \(aqd\(aq)
574     ^
575     |
576   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
578 .if n \{\
583 It is sometimes useful to be able to checkout a commit that is not at the tip of any named branch, or even to create a new commit that is not referenced by a named branch\&. Let\(cqs look at what happens when we checkout commit \fBb\fR (here we show two ways this may be done):
585 .if n \{\
586 .RS 4
589 $ git checkout v2\&.0  # or
590 $ git checkout master^^
592    HEAD (refers to commit \(aqb\(aq)
593     |
594     v
595 a\-\-\-b\-\-\-c\-\-\-d  branch \(aqmaster\(aq (refers to commit \(aqd\(aq)
596     ^
597     |
598   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
600 .if n \{\
605 Notice that regardless of which checkout command we use, \fBHEAD\fR now refers directly to commit \fBb\fR\&. This is known as being in detached \fBHEAD\fR state\&. It means simply that \fBHEAD\fR refers to a specific commit, as opposed to referring to a named branch\&. Let\(cqs see what happens when we create a commit:
607 .if n \{\
608 .RS 4
611 $ edit; git add; git commit
613      HEAD (refers to commit \(aqe\(aq)
614       |
615       v
616       e
617      /
618 a\-\-\-b\-\-\-c\-\-\-d  branch \(aqmaster\(aq (refers to commit \(aqd\(aq)
619     ^
620     |
621   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
623 .if n \{\
628 There is now a new commit \fBe\fR, but it is referenced only by \fBHEAD\fR\&. We can of course add yet another commit in this state:
630 .if n \{\
631 .RS 4
634 $ edit; git add; git commit
636          HEAD (refers to commit \(aqf\(aq)
637           |
638           v
639       e\-\-\-f
640      /
641 a\-\-\-b\-\-\-c\-\-\-d  branch \(aqmaster\(aq (refers to commit \(aqd\(aq)
642     ^
643     |
644   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
646 .if n \{\
651 In fact, we can perform all the normal Git operations\&. But, let\(cqs look at what happens when we then checkout \fBmaster\fR:
653 .if n \{\
654 .RS 4
657 $ git checkout master
659                HEAD (refers to branch \(aqmaster\(aq)
660       e\-\-\-f     |
661      /          v
662 a\-\-\-b\-\-\-c\-\-\-d  branch \(aqmaster\(aq (refers to commit \(aqd\(aq)
663     ^
664     |
665   tag \(aqv2\&.0\(aq (refers to commit \(aqb\(aq)
667 .if n \{\
672 It is important to realize that at this point nothing refers to commit \fBf\fR\&. Eventually commit \fBf\fR (and by extension commit \fBe\fR) will be deleted by the routine Git garbage collection process, unless we create a reference before that happens\&. If we have not yet moved away from commit \fBf\fR, any of these will create a reference to it:
674 .if n \{\
675 .RS 4
678 $ git checkout \-b foo   \fB(1)\fR
679 $ git branch foo        \fB(2)\fR
680 $ git tag foo           \fB(3)\fR
682 .if n \{\
687 \fB1. \fRcreates a new branch
688 \fBfoo\fR, which refers to commit
689 \fBf\fR, and then updates
690 \fBHEAD\fR
691 to refer to branch
692 \fBfoo\fR\&. In other words, we\(cqll no longer be in detached
693 \fBHEAD\fR
694 state after this command\&.
696 \fB2. \fRsimilarly creates a new branch
697 \fBfoo\fR, which refers to commit
698 \fBf\fR, but leaves
699 \fBHEAD\fR
700 detached\&.
702 \fB3. \fRcreates a new tag
703 \fBfoo\fR, which refers to commit
704 \fBf\fR, leaving
705 \fBHEAD\fR
706 detached\&.
709 If we have moved away from commit \fBf\fR, then we must first recover its object name (typically by using git reflog), and then we can create a reference to it\&. For example, to see the last two commits to which \fBHEAD\fR referred, we can use either of these commands:
711 .if n \{\
712 .RS 4
715 $ git reflog \-2 HEAD # or
716 $ git log \-g \-2 HEAD
718 .if n \{\
722 .SH "ARGUMENT DISAMBIGUATION"
724 When there is only one argument given and it is not \fB\-\-\fR (e\&.g\&. \fBgit checkout abc\fR), and when the argument is both a valid \fB<tree\-ish>\fR (e\&.g\&. a branch \fBabc\fR exists) and a valid \fB<pathspec>\fR (e\&.g\&. a file or a directory whose name is "abc" exists), Git would usually ask you to disambiguate\&. Because checking out a branch is so common an operation, however, \fBgit checkout abc\fR takes "abc" as a \fB<tree\-ish>\fR in such a situation\&. Use \fBgit checkout \-\- <pathspec>\fR if you want to checkout these paths out of the index\&.
725 .SH "EXAMPLES"
727 .RS 4
728 .ie n \{\
729 \h'-04' 1.\h'+01'\c
731 .el \{\
732 .sp -1
733 .IP "  1." 4.2
735 The following sequence checks out the
736 \fBmaster\fR
737 branch, reverts the
738 \fBMakefile\fR
739 to two revisions back, deletes
740 \fBhello\&.c\fR
741 by mistake, and gets it back from the index\&.
743 .if n \{\
744 .RS 4
747 $ git checkout master             \fB(1)\fR
748 $ git checkout master~2 Makefile  \fB(2)\fR
749 $ rm \-f hello\&.c
750 $ git checkout hello\&.c            \fB(3)\fR
752 .if n \{\
756 \fB1. \fRswitch branch
758 \fB2. \fRtake a file out of another commit
760 \fB3. \fRrestore
761 \fBhello\&.c\fR
762 from the index
764 If you want to check out
765 \fIall\fR
766 C source files out of the index, you can say
768 .if n \{\
769 .RS 4
772 $ git checkout \-\- \(aq*\&.c\(aq
774 .if n \{\
778 Note the quotes around
779 \fB*\&.c\fR\&. The file
780 \fBhello\&.c\fR
781 will also be checked out, even though it is no longer in the working tree, because the file globbing is used to match entries in the index (not in the working tree by the shell)\&.
783 If you have an unfortunate branch that is named
784 \fBhello\&.c\fR, this step would be confused as an instruction to switch to that branch\&. You should instead write:
786 .if n \{\
787 .RS 4
790 $ git checkout \-\- hello\&.c
792 .if n \{\
799 .RS 4
800 .ie n \{\
801 \h'-04' 2.\h'+01'\c
803 .el \{\
804 .sp -1
805 .IP "  2." 4.2
807 After working in the wrong branch, switching to the correct branch would be done using:
809 .if n \{\
810 .RS 4
813 $ git checkout mytopic
815 .if n \{\
819 However, your "wrong" branch and correct
820 \fBmytopic\fR
821 branch may differ in files that you have modified locally, in which case the above checkout would fail like this:
823 .if n \{\
824 .RS 4
827 $ git checkout mytopic
828 error: You have local changes to \(aqfrotz\(aq; not switching branches\&.
830 .if n \{\
834 You can give the
835 \fB\-m\fR
836 flag to the command, which would try a three\-way merge:
838 .if n \{\
839 .RS 4
842 $ git checkout \-m mytopic
843 Auto\-merging frotz
845 .if n \{\
849 After this three\-way merge, the local modifications are
850 \fInot\fR
851 registered in your index file, so
852 \fBgit diff\fR
853 would show you what changes you made since the tip of the new branch\&.
856 .RS 4
857 .ie n \{\
858 \h'-04' 3.\h'+01'\c
860 .el \{\
861 .sp -1
862 .IP "  3." 4.2
864 When a merge conflict happens during switching branches with the
865 \fB\-m\fR
866 option, you would see something like this:
868 .if n \{\
869 .RS 4
872 $ git checkout \-m mytopic
873 Auto\-merging frotz
874 ERROR: Merge conflict in frotz
875 fatal: merge program failed
877 .if n \{\
881 At this point,
882 \fBgit diff\fR
883 shows the changes cleanly merged as in the previous example, as well as the changes in the conflicted files\&. Edit and resolve the conflict and mark it resolved with
884 \fBgit add\fR
885 as usual:
887 .if n \{\
888 .RS 4
891 $ edit frotz
892 $ git add frotz
894 .if n \{\
899 .SH "SEE ALSO"
901 \fBgit-switch\fR(1), \fBgit-restore\fR(1)
902 .SH "GIT"
904 Part of the \fBgit\fR(1) suite