test: remove httpd tests that ask for user
[git] / Documentation / git-checkout.txt
1 git-checkout(1)
2 ===============
3
4 NAME
5 ----
6 git-checkout - Switch branches or restore working tree files
7
8 SYNOPSIS
9 --------
10 [verse]
11 'git checkout' [-q] [-f] [-m] [<branch>]
12 'git checkout' [-q] [-f] [-m] --detach [<branch>]
13 'git checkout' [-q] [-f] [-m] [--detach] <commit>
14 'git checkout' [-q] [-f] [-m] [[-b|-B|--orphan] <new_branch>] [<start_point>]
15 'git checkout' [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] [--] <paths>...
16 'git checkout' [-p|--patch] [<tree-ish>] [--] [<paths>...]
17
18 ALIAS
19 ~~~~~
20 'git co'
21
22 DESCRIPTION
23 -----------
24 Updates files in the working tree to match the version in the index
25 or the specified tree.  If no paths are given, 'git checkout' will
26 also update `HEAD` to set the specified branch as the current
27 branch.
28
29 'git checkout' <branch>::
30         To prepare for working on <branch>, switch to it by updating
31         the index and the files in the working tree, and by pointing
32         HEAD at the branch. Local modifications to the files in the
33         working tree are kept, so that they can be committed to the
34         <branch>.
35 +
36 If <branch> is not found but there does exist a tracking branch in
37 exactly one remote (call it <remote>) with a matching name, treat as
38 equivalent to
39 +
40 ------------
41 $ git checkout -b <branch> --track <remote>/<branch>
42 ------------
43 +
44 You could omit <branch>, in which case the command degenerates to
45 "check out the current branch", which is a glorified no-op with a
46 rather expensive side-effects to show only the tracking information,
47 if exists, for the current branch.
48
49 'git checkout' -b|-B <new_branch> [<start point>]::
50
51         Specifying `-b` causes a new branch to be created as if
52         linkgit:git-branch[1] were called and then checked out.  In
53         this case you can use the `--track` or `--no-track` options,
54         which will be passed to 'git branch'.  As a convenience,
55         `--track` without `-b` implies branch creation; see the
56         description of `--track` below.
57 +
58 If `-B` is given, <new_branch> is created if it doesn't exist; otherwise, it
59 is reset. This is the transactional equivalent of
60 +
61 ------------
62 $ git branch -f <branch> [<start point>]
63 $ git checkout <branch>
64 ------------
65 +
66 that is to say, the branch is not reset/created unless "git checkout" is
67 successful.
68
69 'git checkout' --detach [<branch>]::
70 'git checkout' [--detach] <commit>::
71
72         Prepare to work on top of <commit>, by detaching HEAD at it
73         (see "DETACHED HEAD" section), and updating the index and the
74         files in the working tree.  Local modifications to the files
75         in the working tree are kept, so that the resulting working
76         tree will be the state recorded in the commit plus the local
77         modifications.
78 +
79 When the <commit> argument is a branch name, the `--detach` option can
80 be used to detach HEAD at the tip of the branch (`git checkout
81 <branch>` would check out that branch without detaching HEAD).
82 +
83 Omitting <branch> detaches HEAD at the tip of the current branch.
84
85 'git checkout' [-p|--patch] [<tree-ish>] [--] <pathspec>...::
86
87         When <paths> or `--patch` are given, 'git checkout' does *not*
88         switch branches.  It updates the named paths in the working tree
89         from the index file or from a named <tree-ish> (most often a
90         commit).  In this case, the `-b` and `--track` options are
91         meaningless and giving either of them results in an error.  The
92         <tree-ish> argument can be used to specify a specific tree-ish
93         (i.e.  commit, tag or tree) to update the index for the given
94         paths before updating the working tree.
95 +
96 'git checkout' with <paths> or `--patch` is used to restore modified or
97 deleted paths to their original contents from the index or replace paths
98 with the contents from a named <tree-ish> (most often a commit-ish).
99 +
100 The index may contain unmerged entries because of a previous failed merge.
101 By default, if you try to check out such an entry from the index, the
102 checkout operation will fail and nothing will be checked out.
103 Using `-f` will ignore these unmerged entries.  The contents from a
104 specific side of the merge can be checked out of the index by
105 using `--ours` or `--theirs`.  With `-m`, changes made to the working tree
106 file can be discarded to re-create the original conflicted merge result.
107
108 OPTIONS
109 -------
110 -q::
111 --quiet::
112         Quiet, suppress feedback messages.
113
114 --[no-]progress::
115         Progress status is reported on the standard error stream
116         by default when it is attached to a terminal, unless `--quiet`
117         is specified. This flag enables progress reporting even if not
118         attached to a terminal, regardless of `--quiet`.
119
120 -f::
121 --force::
122         When switching branches, proceed even if the index or the
123         working tree differs from HEAD.  This is used to throw away
124         local changes.
125 +
126 When checking out paths from the index, do not fail upon unmerged
127 entries; instead, unmerged entries are ignored.
128
129 --ours::
130 --theirs::
131         When checking out paths from the index, check out stage #2
132         ('ours') or #3 ('theirs') for unmerged paths.
133 +
134 Note that during `git rebase` and `git pull --rebase`, 'ours' and
135 'theirs' may appear swapped; `--ours` gives the version from the
136 branch the changes are rebased onto, while `--theirs` gives the
137 version from the branch that holds your work that is being rebased.
138 +
139 This is because `rebase` is used in a workflow that treats the
140 history at the remote as the shared canonical one, and treats the
141 work done on the branch you are rebasing as the third-party work to
142 be integrated, and you are temporarily assuming the role of the
143 keeper of the canonical history during the rebase.  As the keeper of
144 the canonical history, you need to view the history from the remote
145 as `ours` (i.e. "our shared canonical history"), while what you did
146 on your side branch as `theirs` (i.e. "one contributor's work on top
147 of it").
148
149 -b <new_branch>::
150         Create a new branch named <new_branch> and start it at
151         <start_point>; see linkgit:git-branch[1] for details.
152
153 -B <new_branch>::
154         Creates the branch <new_branch> and start it at <start_point>;
155         if it already exists, then reset it to <start_point>. This is
156         equivalent to running "git branch" with "-f"; see
157         linkgit:git-branch[1] for details.
158
159 -t::
160 --track::
161         When creating a new branch, set up "upstream" configuration. See
162         "--track" in linkgit:git-branch[1] for details.
163 +
164 If no '-b' option is given, the name of the new branch will be
165 derived from the remote-tracking branch, by looking at the local part of
166 the refspec configured for the corresponding remote, and then stripping
167 the initial part up to the "*".
168 This would tell us to use "hack" as the local branch when branching
169 off of "origin/hack" (or "remotes/origin/hack", or even
170 "refs/remotes/origin/hack").  If the given name has no slash, or the above
171 guessing results in an empty name, the guessing is aborted.  You can
172 explicitly give a name with '-b' in such a case.
173
174 --no-track::
175         Do not set up "upstream" configuration, even if the
176         branch.autoSetupMerge configuration variable is true.
177
178 -l::
179         Create the new branch's reflog; see linkgit:git-branch[1] for
180         details.
181
182 --detach::
183         Rather than checking out a branch to work on it, check out a
184         commit for inspection and discardable experiments.
185         This is the default behavior of "git checkout <commit>" when
186         <commit> is not a branch name.  See the "DETACHED HEAD" section
187         below for details.
188
189 --orphan <new_branch>::
190         Create a new 'orphan' branch, named <new_branch>, started from
191         <start_point> and switch to it.  The first commit made on this
192         new branch will have no parents and it will be the root of a new
193         history totally disconnected from all the other branches and
194         commits.
195 +
196 The index and the working tree are adjusted as if you had previously run
197 "git checkout <start_point>".  This allows you to start a new history
198 that records a set of paths similar to <start_point> by easily running
199 "git commit -a" to make the root commit.
200 +
201 This can be useful when you want to publish the tree from a commit
202 without exposing its full history. You might want to do this to publish
203 an open source branch of a project whose current tree is "clean", but
204 whose full history contains proprietary or otherwise encumbered bits of
205 code.
206 +
207 If you want to start a disconnected history that records a set of paths
208 that is totally different from the one of <start_point>, then you should
209 clear the index and the working tree right after creating the orphan
210 branch by running "git rm -rf ." from the top level of the working tree.
211 Afterwards you will be ready to prepare your new files, repopulating the
212 working tree, by copying them from elsewhere, extracting a tarball, etc.
213
214 --ignore-skip-worktree-bits::
215         In sparse checkout mode, `git checkout -- <paths>` would
216         update only entries matched by <paths> and sparse patterns
217         in $GIT_DIR/info/sparse-checkout. This option ignores
218         the sparse patterns and adds back any files in <paths>.
219
220 -m::
221 --merge::
222         When switching branches,
223         if you have local modifications to one or more files that
224         are different between the current branch and the branch to
225         which you are switching, the command refuses to switch
226         branches in order to preserve your modifications in context.
227         However, with this option, a three-way merge between the current
228         branch, your working tree contents, and the new branch
229         is done, and you will be on the new branch.
230 +
231 When a merge conflict happens, the index entries for conflicting
232 paths are left unmerged, and you need to resolve the conflicts
233 and mark the resolved paths with `git add` (or `git rm` if the merge
234 should result in deletion of the path).
235 +
236 When checking out paths from the index, this option lets you recreate
237 the conflicted merge in the specified paths.
238
239 --conflict=<style>::
240         The same as --merge option above, but changes the way the
241         conflicting hunks are presented, overriding the
242         merge.conflictStyle configuration variable.  Possible values are
243         "merge" (default) and "diff3" (in addition to what is shown by
244         "merge" style, shows the original contents).
245
246 -p::
247 --patch::
248         Interactively select hunks in the difference between the
249         <tree-ish> (or the index, if unspecified) and the working
250         tree.  The chosen hunks are then applied in reverse to the
251         working tree (and if a <tree-ish> was specified, the index).
252 +
253 This means that you can use `git checkout -p` to selectively discard
254 edits from your current working tree. See the ``Interactive Mode''
255 section of linkgit:git-add[1] to learn how to operate the `--patch` mode.
256
257 --ignore-other-worktrees::
258         `git checkout` refuses when the wanted ref is already checked
259         out by another worktree. This option makes it check the ref
260         out anyway. In other words, the ref can be held by more than one
261         worktree.
262
263 <branch>::
264         Branch to checkout; if it refers to a branch (i.e., a name that,
265         when prepended with "refs/heads/", is a valid ref), then that
266         branch is checked out. Otherwise, if it refers to a valid
267         commit, your HEAD becomes "detached" and you are no longer on
268         any branch (see below for details).
269 +
270 As a special case, the `"@{-N}"` syntax for the N-th last branch/commit
271 checks out branches (instead of detaching).  You may also specify
272 `-` which is synonymous with `"@{-1}"`.
273 +
274 As a further special case, you may use `"A...B"` as a shortcut for the
275 merge base of `A` and `B` if there is exactly one merge base. You can
276 leave out at most one of `A` and `B`, in which case it defaults to `HEAD`.
277
278 <new_branch>::
279         Name for the new branch.
280
281 <start_point>::
282         The name of a commit at which to start the new branch; see
283         linkgit:git-branch[1] for details. Defaults to HEAD.
284
285 <tree-ish>::
286         Tree to checkout from (when paths are given). If not specified,
287         the index will be used.
288
289
290
291 DETACHED HEAD
292 -------------
293 HEAD normally refers to a named branch (e.g. 'master'). Meanwhile, each
294 branch refers to a specific commit. Let's look at a repo with three
295 commits, one of them tagged, and with branch 'master' checked out:
296
297 ------------
298            HEAD (refers to branch 'master')
299             |
300             v
301 a---b---c  branch 'master' (refers to commit 'c')
302     ^
303     |
304   tag 'v2.0' (refers to commit 'b')
305 ------------
306
307 When a commit is created in this state, the branch is updated to refer to
308 the new commit. Specifically, 'git commit' creates a new commit 'd', whose
309 parent is commit 'c', and then updates branch 'master' to refer to new
310 commit 'd'. HEAD still refers to branch 'master' and so indirectly now refers
311 to commit 'd':
312
313 ------------
314 $ edit; git add; git commit
315
316                HEAD (refers to branch 'master')
317                 |
318                 v
319 a---b---c---d  branch 'master' (refers to commit 'd')
320     ^
321     |
322   tag 'v2.0' (refers to commit 'b')
323 ------------
324
325 It is sometimes useful to be able to checkout a commit that is not at
326 the tip of any named branch, or even to create a new commit that is not
327 referenced by a named branch. Let's look at what happens when we
328 checkout commit 'b' (here we show two ways this may be done):
329
330 ------------
331 $ git checkout v2.0  # or
332 $ git checkout master^^
333
334    HEAD (refers to commit 'b')
335     |
336     v
337 a---b---c---d  branch 'master' (refers to commit 'd')
338     ^
339     |
340   tag 'v2.0' (refers to commit 'b')
341 ------------
342
343 Notice that regardless of which checkout command we use, HEAD now refers
344 directly to commit 'b'. This is known as being in detached HEAD state.
345 It means simply that HEAD refers to a specific commit, as opposed to
346 referring to a named branch. Let's see what happens when we create a commit:
347
348 ------------
349 $ edit; git add; git commit
350
351      HEAD (refers to commit 'e')
352       |
353       v
354       e
355      /
356 a---b---c---d  branch 'master' (refers to commit 'd')
357     ^
358     |
359   tag 'v2.0' (refers to commit 'b')
360 ------------
361
362 There is now a new commit 'e', but it is referenced only by HEAD. We can
363 of course add yet another commit in this state:
364
365 ------------
366 $ edit; git add; git commit
367
368          HEAD (refers to commit 'f')
369           |
370           v
371       e---f
372      /
373 a---b---c---d  branch 'master' (refers to commit 'd')
374     ^
375     |
376   tag 'v2.0' (refers to commit 'b')
377 ------------
378
379 In fact, we can perform all the normal Git operations. But, let's look
380 at what happens when we then checkout master:
381
382 ------------
383 $ git checkout master
384
385                HEAD (refers to branch 'master')
386       e---f     |
387      /          v
388 a---b---c---d  branch 'master' (refers to commit 'd')
389     ^
390     |
391   tag 'v2.0' (refers to commit 'b')
392 ------------
393
394 It is important to realize that at this point nothing refers to commit
395 'f'. Eventually commit 'f' (and by extension commit 'e') will be deleted
396 by the routine Git garbage collection process, unless we create a reference
397 before that happens. If we have not yet moved away from commit 'f',
398 any of these will create a reference to it:
399
400 ------------
401 $ git checkout -b foo   <1>
402 $ git branch foo        <2>
403 $ git tag foo           <3>
404 ------------
405
406 <1> creates a new branch 'foo', which refers to commit 'f', and then
407 updates HEAD to refer to branch 'foo'. In other words, we'll no longer
408 be in detached HEAD state after this command.
409
410 <2> similarly creates a new branch 'foo', which refers to commit 'f',
411 but leaves HEAD detached.
412
413 <3> creates a new tag 'foo', which refers to commit 'f',
414 leaving HEAD detached.
415
416 If we have moved away from commit 'f', then we must first recover its object
417 name (typically by using git reflog), and then we can create a reference to
418 it. For example, to see the last two commits to which HEAD referred, we
419 can use either of these commands:
420
421 ------------
422 $ git reflog -2 HEAD # or
423 $ git log -g -2 HEAD
424 ------------
425
426 EXAMPLES
427 --------
428
429 . The following sequence checks out the `master` branch, reverts
430 the `Makefile` to two revisions back, deletes hello.c by
431 mistake, and gets it back from the index.
432 +
433 ------------
434 $ git checkout master             <1>
435 $ git checkout master~2 Makefile  <2>
436 $ rm -f hello.c
437 $ git checkout hello.c            <3>
438 ------------
439 +
440 <1> switch branch
441 <2> take a file out of another commit
442 <3> restore hello.c from the index
443 +
444 If you want to check out _all_ C source files out of the index,
445 you can say
446 +
447 ------------
448 $ git checkout -- '*.c'
449 ------------
450 +
451 Note the quotes around `*.c`.  The file `hello.c` will also be
452 checked out, even though it is no longer in the working tree,
453 because the file globbing is used to match entries in the index
454 (not in the working tree by the shell).
455 +
456 If you have an unfortunate branch that is named `hello.c`, this
457 step would be confused as an instruction to switch to that branch.
458 You should instead write:
459 +
460 ------------
461 $ git checkout -- hello.c
462 ------------
463
464 . After working in the wrong branch, switching to the correct
465 branch would be done using:
466 +
467 ------------
468 $ git checkout mytopic
469 ------------
470 +
471 However, your "wrong" branch and correct "mytopic" branch may
472 differ in files that you have modified locally, in which case
473 the above checkout would fail like this:
474 +
475 ------------
476 $ git checkout mytopic
477 error: You have local changes to 'frotz'; not switching branches.
478 ------------
479 +
480 You can give the `-m` flag to the command, which would try a
481 three-way merge:
482 +
483 ------------
484 $ git checkout -m mytopic
485 Auto-merging frotz
486 ------------
487 +
488 After this three-way merge, the local modifications are _not_
489 registered in your index file, so `git diff` would show you what
490 changes you made since the tip of the new branch.
491
492 . When a merge conflict happens during switching branches with
493 the `-m` option, you would see something like this:
494 +
495 ------------
496 $ git checkout -m mytopic
497 Auto-merging frotz
498 ERROR: Merge conflict in frotz
499 fatal: merge program failed
500 ------------
501 +
502 At this point, `git diff` shows the changes cleanly merged as in
503 the previous example, as well as the changes in the conflicted
504 files.  Edit and resolve the conflict and mark it resolved with
505 `git add` as usual:
506 +
507 ------------
508 $ edit frotz
509 $ git add frotz
510 ------------
511
512 GIT
513 ---
514 Part of the linkgit:git[1] suite