Autogenerated manpages for v2.45.1-313-g3a57a
[git-manpages.git] / man1 / git-checkout.1
blobaedbc63c50e48d2366897c7ba5dcc41b902de753
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: 2024-05-28
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.45.1.313.g3a57aa566a
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CHECKOUT" "1" "2024\-05\-28" "Git 2\&.45\&.1\&.313\&.g3a57aa" "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] <tree\-ish> [\-\-] <pathspec>\&...
40 \fIgit checkout\fR [\-f] <tree\-ish> \-\-pathspec\-from\-file=<file> [\-\-pathspec\-file\-nul]
41 \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] [\-\-] <pathspec>\&...
42 \fIgit checkout\fR [\-f|\-\-ours|\-\-theirs|\-m|\-\-conflict=<style>] \-\-pathspec\-from\-file=<file> [\-\-pathspec\-file\-nul]
43 \fIgit checkout\fR (\-p|\-\-patch) [<tree\-ish>] [\-\-] [<pathspec>\&...]
44 .fi
45 .sp
46 .SH "DESCRIPTION"
47 .sp
48 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\&.
49 .PP
50 \fIgit checkout\fR [<branch>]
51 .RS 4
52 To prepare for working on
53 \fB<branch>\fR, switch to it by updating the index and the files in the working tree, and by pointing
54 \fBHEAD\fR
55 at the branch\&. Local modifications to the files in the working tree are kept, so that they can be committed to the
56 \fB<branch>\fR\&.
57 .sp
59 \fB<branch>\fR
60 is not found but there does exist a tracking branch in exactly one remote (call it
61 \fB<remote>\fR) with a matching name and
62 \fB\-\-no\-guess\fR
63 is not specified, treat as equivalent to
64 .sp
65 .if n \{\
66 .RS 4
67 .\}
68 .nf
69 $ git checkout \-b <branch> \-\-track <remote>/<branch>
70 .fi
71 .if n \{\
72 .RE
73 .\}
74 .sp
75 You could omit
76 \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 it exists, for the current branch\&.
77 .RE
78 .PP
79 \fIgit checkout\fR \-b|\-B <new\-branch> [<start\-point>]
80 .RS 4
81 Specifying
82 \fB\-b\fR
83 causes a new branch to be created as if
84 \fBgit-branch\fR(1)
85 were called and then checked out\&. In this case you can use the
86 \fB\-\-track\fR
88 \fB\-\-no\-track\fR
89 options, which will be passed to
90 \fIgit branch\fR\&. As a convenience,
91 \fB\-\-track\fR
92 without
93 \fB\-b\fR
94 implies branch creation; see the description of
95 \fB\-\-track\fR
96 below\&.
97 .sp
99 \fB\-B\fR
100 is given,
101 \fB<new\-branch>\fR
102 is created if it doesn\(cqt exist; otherwise, it is reset\&. This is the transactional equivalent of
104 .if n \{\
105 .RS 4
108 $ git branch \-f <branch> [<start\-point>]
109 $ git checkout <branch>
111 .if n \{\
115 that is to say, the branch is not reset/created unless "git checkout" is successful (e\&.g\&., when the branch is in use in another worktree, not just the current branch stays the same, but the branch is not reset to the start\-point, either)\&.
118 \fIgit checkout\fR \-\-detach [<branch>], \fIgit checkout\fR [\-\-detach] <commit>
119 .RS 4
120 Prepare to work on top of
121 \fB<commit>\fR, by detaching
122 \fBHEAD\fR
123 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\&.
125 When the
126 \fB<commit>\fR
127 argument is a branch name, the
128 \fB\-\-detach\fR
129 option can be used to detach
130 \fBHEAD\fR
131 at the tip of the branch (\fBgit checkout <branch>\fR
132 would check out that branch without detaching
133 \fBHEAD\fR)\&.
135 Omitting
136 \fB<branch>\fR
137 detaches
138 \fBHEAD\fR
139 at the tip of the current branch\&.
142 \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]
143 .RS 4
144 Overwrite the contents of the files that match the pathspec\&. When the
145 \fB<tree\-ish>\fR
146 (most often a commit) is not given, overwrite working tree with the contents in the index\&. When the
147 \fB<tree\-ish>\fR
148 is given, overwrite both the index and the working tree with the contents at the
149 \fB<tree\-ish>\fR\&.
151 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
152 \fB\-f\fR
153 will ignore these unmerged entries\&. The contents from a specific side of the merge can be checked out of the index by using
154 \fB\-\-ours\fR
156 \fB\-\-theirs\fR\&. With
157 \fB\-m\fR, changes made to the working tree file can be discarded to re\-create the original conflicted merge result\&.
160 \fIgit checkout\fR (\-p|\-\-patch) [<tree\-ish>] [\-\-] [<pathspec>\&...]
161 .RS 4
162 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
163 \fB\-\-patch\fR
164 option\&.
166 .SH "OPTIONS"
168 \-q, \-\-quiet
169 .RS 4
170 Quiet, suppress feedback messages\&.
173 \-\-progress, \-\-no\-progress
174 .RS 4
175 Progress status is reported on the standard error stream by default when it is attached to a terminal, unless
176 \fB\-\-quiet\fR
177 is specified\&. This flag enables progress reporting even if not attached to a terminal, regardless of
178 \fB\-\-quiet\fR\&.
181 \-f, \-\-force
182 .RS 4
183 When switching branches, proceed even if the index or the working tree differs from
184 \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\&.
186 When checking out paths from the index, do not fail upon unmerged entries; instead, unmerged entries are ignored\&.
189 \-\-ours, \-\-theirs
190 .RS 4
191 When checking out paths from the index, check out stage #2 (\fIours\fR) or #3 (\fItheirs\fR) for unmerged paths\&.
193 Note that during
194 \fBgit rebase\fR
196 \fBgit pull \-\-rebase\fR,
197 \fIours\fR
199 \fItheirs\fR
200 may appear swapped;
201 \fB\-\-ours\fR
202 gives the version from the branch the changes are rebased onto, while
203 \fB\-\-theirs\fR
204 gives the version from the branch that holds your work that is being rebased\&.
206 This is because
207 \fBrebase\fR
208 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
209 \fBours\fR
210 (i\&.e\&. "our shared canonical history"), while what you did on your side branch as
211 \fBtheirs\fR
212 (i\&.e\&. "one contributor\(cqs work on top of it")\&.
215 \-b <new\-branch>
216 .RS 4
217 Create a new branch named
218 \fB<new\-branch>\fR, start it at
219 \fB<start\-point>\fR, and check the resulting branch out; see
220 \fBgit-branch\fR(1)
221 for details\&.
224 \-B <new\-branch>
225 .RS 4
226 Creates the branch
227 \fB<new\-branch>\fR, start it at
228 \fB<start\-point>\fR; if it already exists, then reset it to
229 \fB<start\-point>\fR\&. And then check the resulting branch out\&. This is equivalent to running "git branch" with "\-f" followed by "git checkout" of that branch; see
230 \fBgit-branch\fR(1)
231 for details\&.
234 \-t, \-\-track[=(direct|inherit)]
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 unborn branch, named
321 \fB<new\-branch>\fR, started from
322 \fB<start\-point>\fR
323 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\&.
325 The index and the working tree are adjusted as if you had previously run
326 \fBgit checkout <start\-point>\fR\&. This allows you to start a new history that records a set of paths similar to
327 \fB<start\-point>\fR
328 by easily running
329 \fBgit commit \-a\fR
330 to make the root commit\&.
332 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\&.
334 If you want to start a disconnected history that records a set of paths that is totally different from the one of
335 \fB<start\-point>\fR, then you should clear the index and the working tree right after creating the orphan branch by running
336 \fBgit rm \-rf \&.\fR
337 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\&.
340 \-\-ignore\-skip\-worktree\-bits
341 .RS 4
342 In sparse checkout mode,
343 \fBgit checkout \-\- <paths>\fR
344 would update only entries matched by
345 \fB<paths>\fR
346 and sparse patterns in
347 \fB$GIT_DIR/info/sparse\-checkout\fR\&. This option ignores the sparse patterns and adds back any files in
348 \fB<paths>\fR\&.
351 \-m, \-\-merge
352 .RS 4
353 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\&.
355 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
356 \fBgit add\fR
358 \fBgit rm\fR
359 if the merge should result in deletion of the path)\&.
361 When checking out paths from the index, this option lets you recreate the conflicted merge in the specified paths\&. This option cannot be used when checking out paths from a tree\-ish\&.
363 When switching branches with
364 \fB\-\-merge\fR, staged changes may be lost\&.
367 \-\-conflict=<style>
368 .RS 4
369 The same as
370 \fB\-\-merge\fR
371 option above, but changes the way the conflicting hunks are presented, overriding the
372 \fBmerge\&.conflictStyle\fR
373 configuration variable\&. Possible values are "merge" (default), "diff3", and "zdiff3"\&.
376 \-p, \-\-patch
377 .RS 4
378 Interactively select hunks in the difference between the
379 \fB<tree\-ish>\fR
380 (or the index, if unspecified) and the working tree\&. The chosen hunks are then applied in reverse to the working tree (and if a
381 \fB<tree\-ish>\fR
382 was specified, the index)\&.
384 This means that you can use
385 \fBgit checkout \-p\fR
386 to selectively discard edits from your current working tree\&. See the \(lqInteractive Mode\(rq section of
387 \fBgit-add\fR(1)
388 to learn how to operate the
389 \fB\-\-patch\fR
390 mode\&.
392 Note that this option uses the no overlay mode by default (see also
393 \fB\-\-overlay\fR), and currently doesn\(cqt support overlay mode\&.
396 \-\-ignore\-other\-worktrees
397 .RS 4
398 \fBgit checkout\fR
399 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\&.
402 \-\-overwrite\-ignore, \-\-no\-overwrite\-ignore
403 .RS 4
404 Silently overwrite ignored files when switching branches\&. This is the default behavior\&. Use
405 \fB\-\-no\-overwrite\-ignore\fR
406 to abort the operation when the new branch contains ignored files\&.
409 \-\-recurse\-submodules, \-\-no\-recurse\-submodules
410 .RS 4
411 Using
412 \fB\-\-recurse\-submodules\fR
413 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
414 \fB\-f\fR
415 is used\&. If nothing (or
416 \fB\-\-no\-recurse\-submodules\fR) is used, submodules working trees will not be updated\&. Just like
417 \fBgit-submodule\fR(1), this will detach
418 \fBHEAD\fR
419 of the submodule\&.
422 \-\-overlay, \-\-no\-overlay
423 .RS 4
424 In the default overlay mode,
425 \fBgit checkout\fR
426 never removes files from the index or the working tree\&. When specifying
427 \fB\-\-no\-overlay\fR, files that appear in the index and working tree, but not in
428 \fB<tree\-ish>\fR
429 are removed, to make them match
430 \fB<tree\-ish>\fR
431 exactly\&.
434 \-\-pathspec\-from\-file=<file>
435 .RS 4
436 Pathspec is passed in
437 \fB<file>\fR
438 instead of commandline args\&. If
439 \fB<file>\fR
440 is exactly
441 \fB\-\fR
442 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
443 \fBcore\&.quotePath\fR
444 (see
445 \fBgit-config\fR(1))\&. See also
446 \fB\-\-pathspec\-file\-nul\fR
447 and global
448 \fB\-\-literal\-pathspecs\fR\&.
451 \-\-pathspec\-file\-nul
452 .RS 4
453 Only meaningful with
454 \fB\-\-pathspec\-from\-file\fR\&. Pathspec elements are separated with NUL character and all other characters are taken literally (including newlines and quotes)\&.
457 <branch>
458 .RS 4
459 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
460 \fBHEAD\fR
461 becomes "detached" and you are no longer on any branch (see below for details)\&.
463 You can use the
464 \fB@{\-N}\fR
465 syntax to refer to the N\-th last branch/commit checked out using "git checkout" operation\&. You may also specify
466 \fB\-\fR
467 which is synonymous to
468 \fB@{\-1}\fR\&.
470 As a special case, you may use
471 \fBA\&.\&.\&.B\fR
472 as a shortcut for the merge base of
473 \fBA\fR
475 \fBB\fR
476 if there is exactly one merge base\&. You can leave out at most one of
477 \fBA\fR
479 \fBB\fR, in which case it defaults to
480 \fBHEAD\fR\&.
483 <new\-branch>
484 .RS 4
485 Name for the new branch\&.
488 <start\-point>
489 .RS 4
490 The name of a commit at which to start the new branch; see
491 \fBgit-branch\fR(1)
492 for details\&. Defaults to
493 \fBHEAD\fR\&.
495 As a special case, you may use
496 \fB"A\&.\&.\&.B"\fR
497 as a shortcut for the merge base of
498 \fBA\fR
500 \fBB\fR
501 if there is exactly one merge base\&. You can leave out at most one of
502 \fBA\fR
504 \fBB\fR, in which case it defaults to
505 \fBHEAD\fR\&.
508 <tree\-ish>
509 .RS 4
510 Tree to checkout from (when paths are given)\&. If not specified, the index will be used\&.
512 As a special case, you may use
513 \fB"A\&.\&.\&.B"\fR
514 as a shortcut for the merge base of
515 \fBA\fR
517 \fBB\fR
518 if there is exactly one merge base\&. You can leave out at most one of
519 \fBA\fR
521 \fBB\fR, in which case it defaults to
522 \fBHEAD\fR\&.
525 \-\-
526 .RS 4
527 Do not interpret any more arguments as options\&.
530 <pathspec>\&...
531 .RS 4
532 Limits the paths affected by the operation\&.
534 For more details, see the
535 \fIpathspec\fR
536 entry in
537 \fBgitglossary\fR(7)\&.
539 .SH "DETACHED HEAD"
541 \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:
543 .if n \{\
544 .RS 4
547            HEAD (refers to branch \*(Aqmaster\*(Aq)
548             |
549             v
550 a\-\-\-b\-\-\-c  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqc\*(Aq)
551     ^
552     |
553   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
555 .if n \{\
560 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:
562 .if n \{\
563 .RS 4
566 $ edit; git add; git commit
568                HEAD (refers to branch \*(Aqmaster\*(Aq)
569                 |
570                 v
571 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
572     ^
573     |
574   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
576 .if n \{\
581 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):
583 .if n \{\
584 .RS 4
587 $ git checkout v2\&.0  # or
588 $ git checkout master^^
590    HEAD (refers to commit \*(Aqb\*(Aq)
591     |
592     v
593 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
594     ^
595     |
596   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
598 .if n \{\
603 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:
605 .if n \{\
606 .RS 4
609 $ edit; git add; git commit
611      HEAD (refers to commit \*(Aqe\*(Aq)
612       |
613       v
614       e
615      /
616 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
617     ^
618     |
619   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
621 .if n \{\
626 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:
628 .if n \{\
629 .RS 4
632 $ edit; git add; git commit
634          HEAD (refers to commit \*(Aqf\*(Aq)
635           |
636           v
637       e\-\-\-f
638      /
639 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
640     ^
641     |
642   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
644 .if n \{\
649 In fact, we can perform all the normal Git operations\&. But, let\(cqs look at what happens when we then checkout \fBmaster\fR:
651 .if n \{\
652 .RS 4
655 $ git checkout master
657                HEAD (refers to branch \*(Aqmaster\*(Aq)
658       e\-\-\-f     |
659      /          v
660 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
661     ^
662     |
663   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
665 .if n \{\
670 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:
672 .if n \{\
673 .RS 4
676 $ git checkout \-b foo  # or "git switch \-c foo"  \fB(1)\fR
677 $ git branch foo                                 \fB(2)\fR
678 $ git tag foo                                    \fB(3)\fR
680 .if n \{\
685 tab(:);
686 r lw(\n(.lu*75u/100u).
687 \fB1.\fR\h'-2n':T{
688 creates a new branch
689 \fBfoo\fR, which refers to commit
690 \fBf\fR, and then updates
691 \fBHEAD\fR
692 to refer to branch
693 \fBfoo\fR\&. In other words, we\(cqll no longer be in detached
694 \fBHEAD\fR
695 state after this command\&.
697 \fB2.\fR\h'-2n':T{
698 similarly creates a new branch
699 \fBfoo\fR, which refers to commit
700 \fBf\fR, but leaves
701 \fBHEAD\fR
702 detached\&.
704 \fB3.\fR\h'-2n':T{
705 creates a new tag
706 \fBfoo\fR, which refers to commit
707 \fBf\fR, leaving
708 \fBHEAD\fR
709 detached\&.
713 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:
715 .if n \{\
716 .RS 4
719 $ git reflog \-2 HEAD # or
720 $ git log \-g \-2 HEAD
722 .if n \{\
726 .SH "ARGUMENT DISAMBIGUATION"
728 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\&.
729 .SH "EXAMPLES"
730 .SS "1\&. Paths"
732 The following sequence checks out the \fBmaster\fR branch, reverts the \fBMakefile\fR to two revisions back, deletes \fBhello\&.c\fR by mistake, and gets it back from the index\&.
734 .if n \{\
735 .RS 4
738 $ git checkout master             \fB(1)\fR
739 $ git checkout master~2 Makefile  \fB(2)\fR
740 $ rm \-f hello\&.c
741 $ git checkout hello\&.c            \fB(3)\fR
743 .if n \{\
748 tab(:);
749 r lw(\n(.lu*75u/100u).
750 \fB1.\fR\h'-2n':T{
751 switch branch
753 \fB2.\fR\h'-2n':T{
754 take a file out of another commit
756 \fB3.\fR\h'-2n':T{
757 restore
758 \fBhello\&.c\fR
759 from the index
763 If you want to check out \fIall\fR C source files out of the index, you can say
765 .if n \{\
766 .RS 4
769 $ git checkout \-\- \*(Aq*\&.c\*(Aq
771 .if n \{\
776 Note the quotes around \fB*\&.c\fR\&. The file \fBhello\&.c\fR 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)\&.
778 If you have an unfortunate branch that is named \fBhello\&.c\fR, this step would be confused as an instruction to switch to that branch\&. You should instead write:
780 .if n \{\
781 .RS 4
784 $ git checkout \-\- hello\&.c
786 .if n \{\
790 .SS "2\&. Merge"
792 After working in the wrong branch, switching to the correct branch would be done using:
794 .if n \{\
795 .RS 4
798 $ git checkout mytopic
800 .if n \{\
805 However, your "wrong" branch and correct \fBmytopic\fR branch may differ in files that you have modified locally, in which case the above checkout would fail like this:
807 .if n \{\
808 .RS 4
811 $ git checkout mytopic
812 error: You have local changes to \*(Aqfrotz\*(Aq; not switching branches\&.
814 .if n \{\
819 You can give the \fB\-m\fR flag to the command, which would try a three\-way merge:
821 .if n \{\
822 .RS 4
825 $ git checkout \-m mytopic
826 Auto\-merging frotz
828 .if n \{\
833 After this three\-way merge, the local modifications are \fInot\fR registered in your index file, so \fBgit diff\fR would show you what changes you made since the tip of the new branch\&.
834 .SS "3\&. Merge conflict"
836 When a merge conflict happens during switching branches with the \fB\-m\fR option, you would see something like this:
838 .if n \{\
839 .RS 4
842 $ git checkout \-m mytopic
843 Auto\-merging frotz
844 ERROR: Merge conflict in frotz
845 fatal: merge program failed
847 .if n \{\
852 At this point, \fBgit diff\fR 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 \fBgit add\fR as usual:
854 .if n \{\
855 .RS 4
858 $ edit frotz
859 $ git add frotz
861 .if n \{\
865 .SH "CONFIGURATION"
867 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
869 checkout\&.defaultRemote
870 .RS 4
871 When you run
872 \fBgit checkout <something>\fR
874 \fBgit switch <something>\fR
875 and only have one remote, it may implicitly fall back on checking out and tracking e\&.g\&.
876 \fBorigin/<something>\fR\&. This stops working as soon as you have more than one remote with a
877 \fB<something>\fR
878 reference\&. This setting allows for setting the name of a preferred remote that should always win when it comes to disambiguation\&. The typical use\-case is to set this to
879 \fBorigin\fR\&.
881 Currently this is used by
882 \fBgit-switch\fR(1)
884 \fBgit-checkout\fR(1)
885 when
886 \fBgit checkout <something>\fR
888 \fBgit switch <something>\fR
889 will checkout the
890 \fB<something>\fR
891 branch on another remote, and by
892 \fBgit-worktree\fR(1)
893 when
894 \fBgit worktree add\fR
895 refers to a remote branch\&. This setting might be used for other checkout\-like commands or functionality in the future\&.
898 checkout\&.guess
899 .RS 4
900 Provides the default value for the
901 \fB\-\-guess\fR
903 \fB\-\-no\-guess\fR
904 option in
905 \fBgit checkout\fR
907 \fBgit switch\fR\&. See
908 \fBgit-switch\fR(1)
910 \fBgit-checkout\fR(1)\&.
913 checkout\&.workers
914 .RS 4
915 The number of parallel workers to use when updating the working tree\&. The default is one, i\&.e\&. sequential execution\&. If set to a value less than one, Git will use as many workers as the number of logical cores available\&. This setting and
916 \fBcheckout\&.thresholdForParallelism\fR
917 affect all commands that perform checkout\&. E\&.g\&. checkout, clone, reset, sparse\-checkout, etc\&.
919 Note: Parallel checkout usually delivers better performance for repositories located on SSDs or over NFS\&. For repositories on spinning disks and/or machines with a small number of cores, the default sequential checkout often performs better\&. The size and compression level of a repository might also influence how well the parallel version performs\&.
922 checkout\&.thresholdForParallelism
923 .RS 4
924 When running parallel checkout with a small number of files, the cost of subprocess spawning and inter\-process communication might outweigh the parallelization gains\&. This setting allows you to define the minimum number of files for which parallel checkout should be attempted\&. The default is 100\&.
926 .SH "SEE ALSO"
928 \fBgit-switch\fR(1), \fBgit-restore\fR(1)
929 .SH "GIT"
931 Part of the \fBgit\fR(1) suite