Autogenerated manpages for v2.47.0-rc0
[git-manpages.git] / man1 / git-checkout.1
blob1ea7a3d16be0c48c62eccbc2787e08cfdb4612f8
1 '\" t
2 .\"     Title: git-checkout
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-25
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc0
8 .\"  Language: English
9 .\"
10 .TH "GIT\-CHECKOUT" "1" "2024-09-25" "Git 2\&.47\&.0\&.rc0" "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 .SH "DESCRIPTION"
46 .sp
47 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\&.
48 .PP
49 \fIgit checkout\fR [<branch>]
50 .RS 4
51 To prepare for working on
52 \fB<branch>\fR, switch to it by updating the index and the files in the working tree, and by pointing
53 \fBHEAD\fR
54 at the branch\&. Local modifications to the files in the working tree are kept, so that they can be committed to the
55 \fB<branch>\fR\&.
56 .sp
58 \fB<branch>\fR
59 is not found but there does exist a tracking branch in exactly one remote (call it
60 \fB<remote>\fR) with a matching name and
61 \fB\-\-no\-guess\fR
62 is not specified, treat as equivalent to
63 .sp
64 .if n \{\
65 .RS 4
66 .\}
67 .nf
68 $ git checkout \-b <branch> \-\-track <remote>/<branch>
69 .fi
70 .if n \{\
71 .RE
72 .\}
73 .sp
74 You could omit
75 \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\&.
76 .RE
77 .PP
78 \fIgit checkout\fR \-b|\-B <new\-branch> [<start\-point>]
79 .RS 4
80 Specifying
81 \fB\-b\fR
82 causes a new branch to be created as if
83 \fBgit-branch\fR(1)
84 were called and then checked out\&. In this case you can use the
85 \fB\-\-track\fR
87 \fB\-\-no\-track\fR
88 options, which will be passed to
89 \fIgit branch\fR\&. As a convenience,
90 \fB\-\-track\fR
91 without
92 \fB\-b\fR
93 implies branch creation; see the description of
94 \fB\-\-track\fR
95 below\&.
96 .sp
98 \fB\-B\fR
99 is given,
100 \fB<new\-branch>\fR
101 is created if it doesn\(cqt exist; otherwise, it is reset\&. This is the transactional equivalent of
103 .if n \{\
104 .RS 4
107 $ git branch \-f <branch> [<start\-point>]
108 $ git checkout <branch>
110 .if n \{\
114 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)\&.
117 \fIgit checkout\fR \-\-detach [<branch>], \fIgit checkout\fR [\-\-detach] <commit>
118 .RS 4
119 Prepare to work on top of
120 \fB<commit>\fR, by detaching
121 \fBHEAD\fR
122 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\&.
124 When the
125 \fB<commit>\fR
126 argument is a branch name, the
127 \fB\-\-detach\fR
128 option can be used to detach
129 \fBHEAD\fR
130 at the tip of the branch (\fBgit checkout <branch>\fR
131 would check out that branch without detaching
132 \fBHEAD\fR)\&.
134 Omitting
135 \fB<branch>\fR
136 detaches
137 \fBHEAD\fR
138 at the tip of the current branch\&.
141 \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]
142 .RS 4
143 Overwrite the contents of the files that match the pathspec\&. When the
144 \fB<tree\-ish>\fR
145 (most often a commit) is not given, overwrite working tree with the contents in the index\&. When the
146 \fB<tree\-ish>\fR
147 is given, overwrite both the index and the working tree with the contents at the
148 \fB<tree\-ish>\fR\&.
150 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
151 \fB\-f\fR
152 will ignore these unmerged entries\&. The contents from a specific side of the merge can be checked out of the index by using
153 \fB\-\-ours\fR
155 \fB\-\-theirs\fR\&. With
156 \fB\-m\fR, changes made to the working tree file can be discarded to re\-create the original conflicted merge result\&.
159 \fIgit checkout\fR (\-p|\-\-patch) [<tree\-ish>] [\-\-] [<pathspec>\&...\:]
160 .RS 4
161 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
162 \fB\-\-patch\fR
163 option\&.
165 .SH "OPTIONS"
167 \-q, \-\-quiet
168 .RS 4
169 Quiet, suppress feedback messages\&.
172 \-\-progress, \-\-no\-progress
173 .RS 4
174 Progress status is reported on the standard error stream by default when it is attached to a terminal, unless
175 \fB\-\-quiet\fR
176 is specified\&. This flag enables progress reporting even if not attached to a terminal, regardless of
177 \fB\-\-quiet\fR\&.
180 \-f, \-\-force
181 .RS 4
182 When switching branches, proceed even if the index or the working tree differs from
183 \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\&.
185 When checking out paths from the index, do not fail upon unmerged entries; instead, unmerged entries are ignored\&.
188 \-\-ours, \-\-theirs
189 .RS 4
190 When checking out paths from the index, check out stage #2 (\fIours\fR) or #3 (\fItheirs\fR) for unmerged paths\&.
192 Note that during
193 \fBgit rebase\fR
195 \fBgit pull \-\-rebase\fR,
196 \fIours\fR
198 \fItheirs\fR
199 may appear swapped;
200 \fB\-\-ours\fR
201 gives the version from the branch the changes are rebased onto, while
202 \fB\-\-theirs\fR
203 gives the version from the branch that holds your work that is being rebased\&.
205 This is because
206 \fBrebase\fR
207 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
208 \fBours\fR
209 (i\&.e\&. "our shared canonical history"), while what you did on your side branch as
210 \fBtheirs\fR
211 (i\&.e\&. "one contributor\(cqs work on top of it")\&.
214 \-b <new\-branch>
215 .RS 4
216 Create a new branch named
217 \fB<new\-branch>\fR, start it at
218 \fB<start\-point>\fR, and check the resulting branch out; 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, start it at
227 \fB<start\-point>\fR; if it already exists, then reset it to
228 \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
229 \fBgit-branch\fR(1)
230 for details\&.
233 \-t, \-\-track[=(direct|inherit)]
234 .RS 4
235 When creating a new branch, set up "upstream" configuration\&. See "\-\-track" in
236 \fBgit-branch\fR(1)
237 for details\&.
239 If no
240 \fB\-b\fR
241 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
242 \fBhack\fR
243 as the local branch when branching off of
244 \fBorigin/hack\fR
246 \fBremotes/origin/hack\fR, or even
247 \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
248 \fB\-b\fR
249 in such a case\&.
252 \-\-no\-track
253 .RS 4
254 Do not set up "upstream" configuration, even if the
255 \fBbranch\&.autoSetupMerge\fR
256 configuration variable is true\&.
259 \-\-guess, \-\-no\-guess
260 .RS 4
262 \fB<branch>\fR
263 is not found but there does exist a tracking branch in exactly one remote (call it
264 \fB<remote>\fR) with a matching name, treat as equivalent to
266 .if n \{\
267 .RS 4
270 $ git checkout \-b <branch> \-\-track <remote>/<branch>
272 .if n \{\
276 If the branch exists in multiple remotes and one of them is named by the
277 \fBcheckout\&.defaultRemote\fR
278 configuration variable, we\(cqll use that one for the purposes of disambiguation, even if the
279 \fB<branch>\fR
280 isn\(cqt unique across all remotes\&. Set it to e\&.g\&.
281 \fBcheckout\&.defaultRemote=origin\fR
282 to always checkout remote branches from there if
283 \fB<branch>\fR
284 is ambiguous but exists on the
285 \fIorigin\fR
286 remote\&. See also
287 \fBcheckout\&.defaultRemote\fR
289 \fBgit-config\fR(1)\&.
291 \fB\-\-guess\fR
292 is the default behavior\&. Use
293 \fB\-\-no\-guess\fR
294 to disable it\&.
296 The default behavior can be set via the
297 \fBcheckout\&.guess\fR
298 configuration variable\&.
302 .RS 4
303 Create the new branch\(cqs reflog; see
304 \fBgit-branch\fR(1)
305 for details\&.
308 \-d, \-\-detach
309 .RS 4
310 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
311 \fBgit checkout <commit>\fR
312 when
313 \fB<commit>\fR
314 is not a branch name\&. See the "DETACHED HEAD" section below for details\&.
317 \-\-orphan <new\-branch>
318 .RS 4
319 Create a new unborn branch, named
320 \fB<new\-branch>\fR, started from
321 \fB<start\-point>\fR
322 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\&.
324 The index and the working tree are adjusted as if you had previously run
325 \fBgit checkout <start\-point>\fR\&. This allows you to start a new history that records a set of paths similar to
326 \fB<start\-point>\fR
327 by easily running
328 \fBgit commit \-a\fR
329 to make the root commit\&.
331 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\&.
333 If you want to start a disconnected history that records a set of paths that is totally different from the one of
334 \fB<start\-point>\fR, then you should clear the index and the working tree right after creating the orphan branch by running
335 \fBgit rm \-rf \&.\fR
336 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\&.
339 \-\-ignore\-skip\-worktree\-bits
340 .RS 4
341 In sparse checkout mode,
342 \fBgit checkout \-\- <paths>\fR
343 would update only entries matched by
344 \fB<paths>\fR
345 and sparse patterns in
346 \fB$GIT_DIR/info/sparse\-checkout\fR\&. This option ignores the sparse patterns and adds back any files in
347 \fB<paths>\fR\&.
350 \-m, \-\-merge
351 .RS 4
352 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\&.
354 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
355 \fBgit add\fR
357 \fBgit rm\fR
358 if the merge should result in deletion of the path)\&.
360 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\&.
362 When switching branches with
363 \fB\-\-merge\fR, staged changes may be lost\&.
366 \-\-conflict=<style>
367 .RS 4
368 The same as
369 \fB\-\-merge\fR
370 option above, but changes the way the conflicting hunks are presented, overriding the
371 \fBmerge\&.conflictStyle\fR
372 configuration variable\&. Possible values are "merge" (default), "diff3", and "zdiff3"\&.
375 \-p, \-\-patch
376 .RS 4
377 Interactively select hunks in the difference between the
378 \fB<tree\-ish>\fR
379 (or the index, if unspecified) and the working tree\&. The chosen hunks are then applied in reverse to the working tree (and if a
380 \fB<tree\-ish>\fR
381 was specified, the index)\&.
383 This means that you can use
384 \fBgit checkout \-p\fR
385 to selectively discard edits from your current working tree\&. See the
386 \(lqInteractive Mode\(rq
387 section of
388 \fBgit-add\fR(1)
389 to learn how to operate the
390 \fB\-\-patch\fR
391 mode\&.
393 Note that this option uses the no overlay mode by default (see also
394 \fB\-\-overlay\fR), and currently doesn\(cqt support overlay mode\&.
397 \-\-ignore\-other\-worktrees
398 .RS 4
399 \fBgit checkout\fR
400 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\&.
403 \-\-overwrite\-ignore, \-\-no\-overwrite\-ignore
404 .RS 4
405 Silently overwrite ignored files when switching branches\&. This is the default behavior\&. Use
406 \fB\-\-no\-overwrite\-ignore\fR
407 to abort the operation when the new branch contains ignored files\&.
410 \-\-recurse\-submodules, \-\-no\-recurse\-submodules
411 .RS 4
412 Using
413 \fB\-\-recurse\-submodules\fR
414 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
415 \fB\-f\fR
416 is used\&. If nothing (or
417 \fB\-\-no\-recurse\-submodules\fR) is used, submodules working trees will not be updated\&. Just like
418 \fBgit-submodule\fR(1), this will detach
419 \fBHEAD\fR
420 of the submodule\&.
423 \-\-overlay, \-\-no\-overlay
424 .RS 4
425 In the default overlay mode,
426 \fBgit checkout\fR
427 never removes files from the index or the working tree\&. When specifying
428 \fB\-\-no\-overlay\fR, files that appear in the index and working tree, but not in
429 \fB<tree\-ish>\fR
430 are removed, to make them match
431 \fB<tree\-ish>\fR
432 exactly\&.
435 \-\-pathspec\-from\-file=<file>
436 .RS 4
437 Pathspec is passed in
438 \fB<file>\fR
439 instead of commandline args\&. If
440 \fB<file>\fR
441 is exactly
442 \fB\-\fR
443 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
444 \fBcore\&.quotePath\fR
445 (see
446 \fBgit-config\fR(1))\&. See also
447 \fB\-\-pathspec\-file\-nul\fR
448 and global
449 \fB\-\-literal\-pathspecs\fR\&.
452 \-\-pathspec\-file\-nul
453 .RS 4
454 Only meaningful with
455 \fB\-\-pathspec\-from\-file\fR\&. Pathspec elements are separated with NUL character and all other characters are taken literally (including newlines and quotes)\&.
458 <branch>
459 .RS 4
460 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
461 \fBHEAD\fR
462 becomes "detached" and you are no longer on any branch (see below for details)\&.
464 You can use the
465 \fB@{\-N}\fR
466 syntax to refer to the N\-th last branch/commit checked out using "git checkout" operation\&. You may also specify
467 \fB\-\fR
468 which is synonymous to
469 \fB@{\-1}\fR\&.
471 As a special case, you may use
472 \fBA\&.\&.\&.B\fR
473 as a shortcut for the merge base of
474 \fBA\fR
476 \fBB\fR
477 if there is exactly one merge base\&. You can leave out at most one of
478 \fBA\fR
480 \fBB\fR, in which case it defaults to
481 \fBHEAD\fR\&.
484 <new\-branch>
485 .RS 4
486 Name for the new branch\&.
489 <start\-point>
490 .RS 4
491 The name of a commit at which to start the new branch; see
492 \fBgit-branch\fR(1)
493 for details\&. Defaults to
494 \fBHEAD\fR\&.
496 As a special case, you may use
497 \fB"A\&.\&.\&.B"\fR
498 as a shortcut for the merge base of
499 \fBA\fR
501 \fBB\fR
502 if there is exactly one merge base\&. You can leave out at most one of
503 \fBA\fR
505 \fBB\fR, in which case it defaults to
506 \fBHEAD\fR\&.
509 <tree\-ish>
510 .RS 4
511 Tree to checkout from (when paths are given)\&. If not specified, the index will be used\&.
513 As a special case, you may use
514 \fB"A\&.\&.\&.B"\fR
515 as a shortcut for the merge base of
516 \fBA\fR
518 \fBB\fR
519 if there is exactly one merge base\&. You can leave out at most one of
520 \fBA\fR
522 \fBB\fR, in which case it defaults to
523 \fBHEAD\fR\&.
526 \-\-
527 .RS 4
528 Do not interpret any more arguments as options\&.
531 <pathspec>\&...\:
532 .RS 4
533 Limits the paths affected by the operation\&.
535 For more details, see the
536 \fIpathspec\fR
537 entry in
538 \fBgitglossary\fR(7)\&.
540 .SH "DETACHED HEAD"
542 \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:
544 .if n \{\
545 .RS 4
548            HEAD (refers to branch \*(Aqmaster\*(Aq)
549             |
550             v
551 a\-\-\-b\-\-\-c  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqc\*(Aq)
552     ^
553     |
554   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
556 .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 \{\
580 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):
582 .if n \{\
583 .RS 4
586 $ git checkout v2\&.0  # or
587 $ git checkout master^^
589    HEAD (refers to commit \*(Aqb\*(Aq)
590     |
591     v
592 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
593     ^
594     |
595   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
597 .if n \{\
601 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:
603 .if n \{\
604 .RS 4
607 $ edit; git add; git commit
609      HEAD (refers to commit \*(Aqe\*(Aq)
610       |
611       v
612       e
613      /
614 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
615     ^
616     |
617   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
619 .if n \{\
623 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:
625 .if n \{\
626 .RS 4
629 $ edit; git add; git commit
631          HEAD (refers to commit \*(Aqf\*(Aq)
632           |
633           v
634       e\-\-\-f
635      /
636 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
637     ^
638     |
639   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
641 .if n \{\
645 In fact, we can perform all the normal Git operations\&. But, let\(cqs look at what happens when we then checkout \fBmaster\fR:
647 .if n \{\
648 .RS 4
651 $ git checkout master
653                HEAD (refers to branch \*(Aqmaster\*(Aq)
654       e\-\-\-f     |
655      /          v
656 a\-\-\-b\-\-\-c\-\-\-d  branch \*(Aqmaster\*(Aq (refers to commit \*(Aqd\*(Aq)
657     ^
658     |
659   tag \*(Aqv2\&.0\*(Aq (refers to commit \*(Aqb\*(Aq)
661 .if n \{\
665 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:
667 .if n \{\
668 .RS 4
671 $ git checkout \-b foo  # or "git switch \-c foo"  \fB(1)\fR
672 $ git branch foo                                 \fB(2)\fR
673 $ git tag foo                                    \fB(3)\fR
675 .if n \{\
680 tab(:);
681 r lw(\n(.lu*75u/100u).
682 \fB1.\fR\h'-2n':T{
683 creates a new branch
684 \fBfoo\fR, which refers to commit
685 \fBf\fR, and then updates
686 \fBHEAD\fR
687 to refer to branch
688 \fBfoo\fR\&. In other words, we\(cqll no longer be in detached
689 \fBHEAD\fR
690 state after this command\&.
692 \fB2.\fR\h'-2n':T{
693 similarly creates a new branch
694 \fBfoo\fR, which refers to commit
695 \fBf\fR, but leaves
696 \fBHEAD\fR
697 detached\&.
699 \fB3.\fR\h'-2n':T{
700 creates a new tag
701 \fBfoo\fR, which refers to commit
702 \fBf\fR, leaving
703 \fBHEAD\fR
704 detached\&.
708 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:
710 .if n \{\
711 .RS 4
714 $ git reflog \-2 HEAD # or
715 $ git log \-g \-2 HEAD
717 .if n \{\
720 .SH "ARGUMENT DISAMBIGUATION"
722 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\&.
723 .SH "EXAMPLES"
724 .SS "1\&. Paths"
726 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\&.
728 .if n \{\
729 .RS 4
732 $ git checkout master             \fB(1)\fR
733 $ git checkout master~2 Makefile  \fB(2)\fR
734 $ rm \-f hello\&.c
735 $ git checkout hello\&.c            \fB(3)\fR
737 .if n \{\
742 tab(:);
743 r lw(\n(.lu*75u/100u).
744 \fB1.\fR\h'-2n':T{
745 switch branch
747 \fB2.\fR\h'-2n':T{
748 take a file out of another commit
750 \fB3.\fR\h'-2n':T{
751 restore
752 \fBhello\&.c\fR
753 from the index
757 If you want to check out \fIall\fR C source files out of the index, you can say
759 .if n \{\
760 .RS 4
763 $ git checkout \-\- \*(Aq*\&.c\*(Aq
765 .if n \{\
769 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)\&.
771 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:
773 .if n \{\
774 .RS 4
777 $ git checkout \-\- hello\&.c
779 .if n \{\
782 .SS "2\&. Merge"
784 After working in the wrong branch, switching to the correct branch would be done using:
786 .if n \{\
787 .RS 4
790 $ git checkout mytopic
792 .if n \{\
796 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:
798 .if n \{\
799 .RS 4
802 $ git checkout mytopic
803 error: You have local changes to \*(Aqfrotz\*(Aq; not switching branches\&.
805 .if n \{\
809 You can give the \fB\-m\fR flag to the command, which would try a three\-way merge:
811 .if n \{\
812 .RS 4
815 $ git checkout \-m mytopic
816 Auto\-merging frotz
818 .if n \{\
822 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\&.
823 .SS "3\&. Merge conflict"
825 When a merge conflict happens during switching branches with the \fB\-m\fR option, you would see something like this:
827 .if n \{\
828 .RS 4
831 $ git checkout \-m mytopic
832 Auto\-merging frotz
833 ERROR: Merge conflict in frotz
834 fatal: merge program failed
836 .if n \{\
840 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:
842 .if n \{\
843 .RS 4
846 $ edit frotz
847 $ git add frotz
849 .if n \{\
852 .SH "CONFIGURATION"
854 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:
856 checkout\&.defaultRemote
857 .RS 4
858 When you run
859 \fBgit checkout <something>\fR
861 \fBgit switch <something>\fR
862 and only have one remote, it may implicitly fall back on checking out and tracking e\&.g\&.
863 \fBorigin/<something>\fR\&. This stops working as soon as you have more than one remote with a
864 \fB<something>\fR
865 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
866 \fBorigin\fR\&.
868 Currently this is used by
869 \fBgit-switch\fR(1)
871 \fBgit-checkout\fR(1)
872 when
873 \fBgit checkout <something>\fR
875 \fBgit switch <something>\fR
876 will checkout the
877 \fB<something>\fR
878 branch on another remote, and by
879 \fBgit-worktree\fR(1)
880 when
881 \fBgit worktree add\fR
882 refers to a remote branch\&. This setting might be used for other checkout\-like commands or functionality in the future\&.
885 checkout\&.guess
886 .RS 4
887 Provides the default value for the
888 \fB\-\-guess\fR
890 \fB\-\-no\-guess\fR
891 option in
892 \fBgit checkout\fR
894 \fBgit switch\fR\&. See
895 \fBgit-switch\fR(1)
897 \fBgit-checkout\fR(1)\&.
900 checkout\&.workers
901 .RS 4
902 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
903 \fBcheckout\&.thresholdForParallelism\fR
904 affect all commands that perform checkout\&. E\&.g\&. checkout, clone, reset, sparse\-checkout, etc\&.
906 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\&.
909 checkout\&.thresholdForParallelism
910 .RS 4
911 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\&.
913 .SH "SEE ALSO"
915 \fBgit-switch\fR(1), \fBgit-restore\fR(1)
916 .SH "GIT"
918 Part of the \fBgit\fR(1) suite