Autogenerated HTML docs for v1.1.5-g36b5
[git.git] / git-checkout.txt
1 git-checkout(1)
2 ===============
3
4 NAME
5 ----
6 git-checkout - Checkout and switch to a branch.
7
8 SYNOPSIS
9 --------
10 'git-checkout' [-f] [-b <new_branch>] [-m] [<branch>] [<paths>...]
11
12 DESCRIPTION
13 -----------
14
15 When <paths> are not given, this command switches branches, by
16 updating the index and working tree to reflect the specified
17 branch, <branch>, and updating HEAD to be <branch> or, if
18 specified, <new_branch>.
19
20 When <paths> are given, this command does *not* switch
21 branches.  It updates the named paths in the working tree from
22 the index file (i.e. it runs `git-checkout-index -f -u`).  In
23 this case, `-f` and `-b` options are meaningless and giving
24 either of them results in an error.  <branch> argument can be
25 used to specify a specific tree-ish to update the index for the
26 given paths before updating the working tree.
27
28
29 OPTIONS
30 -------
31 -f::
32         Force an re-read of everything.
33
34 -b::
35         Create a new branch and start it at <branch>.
36
37 -m::
38         If you have local modifications to a file that is
39         different between the current branch and the branch you
40         are switching to, the command refuses to switch
41         branches, to preserve your modifications in context.
42         With this option, a three-way merge between the current
43         branch, your working tree contents, and the new branch
44         is done, and you will be on the new branch.
45 +
46 When a merge conflict happens, the index entries for conflicting
47 paths are left unmerged, and you need to resolve the conflicts
48 and mark the resolved paths with `git update-index`.
49
50 <new_branch>::
51         Name for the new branch.
52
53 <branch>::
54         Branch to checkout; may be any object ID that resolves to a
55         commit. Defaults to HEAD.
56
57
58 EXAMPLES
59 --------
60
61 . The following sequence checks out the `master` branch, reverts
62 the `Makefile` to two revisions back, deletes hello.c by
63 mistake, and gets it back from the index.
64 +
65 ------------
66 $ git checkout master <1>
67 $ git checkout master~2 Makefile <2>
68 $ rm -f hello.c
69 $ git checkout hello.c <3>
70
71 <1> switch branch
72 <2> take out a file out of other commit
73 <3> or "git checkout -- hello.c", as in the next example.
74 ------------
75 +
76 If you have an unfortunate branch that is named `hello.c`, the
77 last step above would be confused as an instruction to switch to
78 that branch.  You should instead write:
79 +
80 ------------
81 $ git checkout -- hello.c
82 ------------
83
84 . After working in a wrong branch, switching to the correct
85 branch you would want to is done with:
86 +
87 ------------
88 $ git checkout mytopic
89 ------------
90 +
91 However, your "wrong" branch and correct "mytopic" branch may
92 differ in files that you have locally modified, in which case,
93 the above checkout would fail like this:
94 +
95 ------------
96 $ git checkout mytopic
97 fatal: Entry 'frotz' not uptodate. Cannot merge.
98 ------------
99 +
100 You can give the `-m` flag to the command, which would try a
101 three-way merge:
102 +
103 ------------
104 $ git checkout -m mytopic
105 Auto-merging frotz
106 ------------
107 +
108 After this three-way merge, the local modifications are _not_
109 registered in your index file, so `git diff` would show you what
110 changes you made since the tip of the new branch.
111
112 . When a merge conflict happens during switching branches with
113 the `-m` option, you would see something like this:
114 +
115 ------------
116 $ git checkout -m mytopic
117 Auto-merging frotz
118 merge: warning: conflicts during merge
119 ERROR: Merge conflict in frotz
120 fatal: merge program failed
121 ------------
122 +
123 At this point, `git diff` shows the changes cleanly merged as in
124 the previous example, as well as the changes in the conflicted
125 files.  Edit and resolve the conflict and mark it resolved with
126 `git update-index` as usual:
127 +
128 ------------
129 $ edit frotz
130 $ git update-index frotz
131 ------------
132
133
134 Author
135 ------
136 Written by Linus Torvalds <torvalds@osdl.org>
137
138 Documentation
139 --------------
140 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
141
142 GIT
143 ---
144 Part of the gitlink:git[7] suite
145