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