Documentation: reset: describe new "--keep" option
[git/dscho.git] / Documentation / git-reset.txt
blob1e9ae0ae9fe4d2fc9e36c4904c6e6f39c2f37639
1 git-reset(1)
2 ============
4 NAME
5 ----
6 git-reset - Reset current HEAD to the specified state
8 SYNOPSIS
9 --------
10 [verse]
11 'git reset' [--mixed | --soft | --hard | --merge | --keep] [-q] [<commit>]
12 'git reset' [-q] [<commit>] [--] <paths>...
13 'git reset' --patch [<commit>] [--] [<paths>...]
15 DESCRIPTION
16 -----------
17 Sets the current head to the specified commit and optionally resets the
18 index and working tree to match.
20 This command is useful if you notice some small error in a recent
21 commit (or set of commits) and want to redo that part without showing
22 the undo in the history.
24 If you want to undo a commit other than the latest on a branch,
25 linkgit:git-revert[1] is your friend.
27 The second and third forms with 'paths' and/or --patch are used to
28 revert selected paths in the index from a given commit, without moving
29 HEAD.
32 OPTIONS
33 -------
34 --mixed::
35         Resets the index but not the working tree (i.e., the changed files
36         are preserved but not marked for commit) and reports what has not
37         been updated. This is the default action.
39 --soft::
40         Does not touch the index file nor the working tree at all, but
41         requires them to be in a good order. This leaves all your changed
42         files "Changes to be committed", as 'git status' would
43         put it.
45 --hard::
46         Matches the working tree and index to that of the tree being
47         switched to. Any changes to tracked files in the working tree
48         since <commit> are lost.
50 --merge::
51         Resets the index to match the tree recorded by the named commit,
52         and updates the files that are different between the named commit
53         and the current commit in the working tree.
55 --keep::
56         Resets the index to match the tree recorded by the named commit,
57         but keep changes in the working tree. Aborts if the reset would
58         change files that are already modified in the working tree.
60 -p::
61 --patch::
62         Interactively select hunks in the difference between the index
63         and <commit> (defaults to HEAD).  The chosen hunks are applied
64         in reverse to the index.
66 This means that `git reset -p` is the opposite of `git add -p` (see
67 linkgit:git-add[1]).
69 -q::
70 --quiet::
71         Be quiet, only report errors.
73 <commit>::
74         Commit to make the current HEAD. If not given defaults to HEAD.
76 DISCUSSION
77 ----------
79 The tables below show what happens when running:
81 ----------
82 git reset --option target
83 ----------
85 to reset the HEAD to another commit (`target`) with the different
86 reset options depending on the state of the files.
88 In these tables, A, B, C and D are some different states of a
89 file. For example, the first line of the first table means that if a
90 file is in state A in the working tree, in state B in the index, in
91 state C in HEAD and in state D in the target, then "git reset --soft
92 target" will put the file in state A in the working tree, in state B
93 in the index and in state D in HEAD.
95       working index HEAD target         working index HEAD
96       ----------------------------------------------------
97        A       B     C    D     --soft   A       B     D
98                                 --mixed  A       D     D
99                                 --hard   D       D     D
100                                 --merge (disallowed)
101                                 --keep  (disallowed)
103       working index HEAD target         working index HEAD
104       ----------------------------------------------------
105        A       B     C    C     --soft   A       B     C
106                                 --mixed  A       C     C
107                                 --hard   C       C     C
108                                 --merge (disallowed)
109                                 --keep   A       C     C
111       working index HEAD target         working index HEAD
112       ----------------------------------------------------
113        B       B     C    D     --soft   B       B     D
114                                 --mixed  B       D     D
115                                 --hard   D       D     D
116                                 --merge  D       D     D
117                                 --keep  (disallowed)
119       working index HEAD target         working index HEAD
120       ----------------------------------------------------
121        B       B     C    C     --soft   B       B     C
122                                 --mixed  B       C     C
123                                 --hard   C       C     C
124                                 --merge  C       C     C
125                                 --keep   B       C     C
127       working index HEAD target         working index HEAD
128       ----------------------------------------------------
129        B       C     C    D     --soft   B       C     D
130                                 --mixed  B       D     D
131                                 --hard   D       D     D
132                                 --merge (disallowed)
133                                 --keep  (disallowed)
135       working index HEAD target         working index HEAD
136       ----------------------------------------------------
137        B       C     C    C     --soft   B       C     C
138                                 --mixed  B       C     C
139                                 --hard   C       C     C
140                                 --merge  B       C     C
141                                 --keep   B       C     C
143 "reset --merge" is meant to be used when resetting out of a conflicted
144 merge. Any mergy operation guarantees that the work tree file that is
145 involved in the merge does not have local change wrt the index before
146 it starts, and that it writes the result out to the work tree. So if
147 we see some difference between the index and the target and also
148 between the index and the work tree, then it means that we are not
149 resetting out from a state that a mergy operation left after failing
150 with a conflict. That is why we disallow --merge option in this case.
152 "reset --keep" is meant to be used when removing some of the last
153 commits in the current branch while keeping changes in the working
154 tree. If there could be conflicts between the changes in the commit we
155 want to remove and the changes in the working tree we want to keep,
156 the reset is disallowed. That's why it is disallowed if there are both
157 changes between the working tree and HEAD, and between HEAD and the
158 target.
160 The following tables show what happens when there are unmerged
161 entries:
163       working index HEAD target         working index HEAD
164       ----------------------------------------------------
165        X       U     A    B     --soft  (disallowed)
166                                 --mixed  X       B     B
167                                 --hard   B       B     B
168                                 --merge  B       B     B
169                                 --keep  (disallowed)
171       working index HEAD target         working index HEAD
172       ----------------------------------------------------
173        X       U     A    A     --soft  (disallowed)
174                                 --mixed  X       A     A
175                                 --hard   A       A     A
176                                 --merge  A       A     A
177                                 --keep   X       A     A
179 X means any state and U means an unmerged index.
181 Examples
182 --------
184 Undo a commit and redo::
186 ------------
187 $ git commit ...
188 $ git reset --soft HEAD^      <1>
189 $ edit                        <2>
190 $ git commit -a -c ORIG_HEAD  <3>
191 ------------
193 <1> This is most often done when you remembered what you
194 just committed is incomplete, or you misspelled your commit
195 message, or both.  Leaves working tree as it was before "reset".
196 <2> Make corrections to working tree files.
197 <3> "reset" copies the old head to .git/ORIG_HEAD; redo the
198 commit by starting with its log message.  If you do not need to
199 edit the message further, you can give -C option instead.
201 See also the --amend option to linkgit:git-commit[1].
203 Undo commits permanently::
205 ------------
206 $ git commit ...
207 $ git reset --hard HEAD~3   <1>
208 ------------
210 <1> The last three commits (HEAD, HEAD^, and HEAD~2) were bad
211 and you do not want to ever see them again.  Do *not* do this if
212 you have already given these commits to somebody else.  (See the
213 "RECOVERING FROM UPSTREAM REBASE" section in linkgit:git-rebase[1] for
214 the implications of doing so.)
216 Undo a commit, making it a topic branch::
218 ------------
219 $ git branch topic/wip     <1>
220 $ git reset --hard HEAD~3  <2>
221 $ git checkout topic/wip   <3>
222 ------------
224 <1> You have made some commits, but realize they were premature
225 to be in the "master" branch.  You want to continue polishing
226 them in a topic branch, so create "topic/wip" branch off of the
227 current HEAD.
228 <2> Rewind the master branch to get rid of those three commits.
229 <3> Switch to "topic/wip" branch and keep working.
231 Undo add::
233 ------------
234 $ edit                                     <1>
235 $ git add frotz.c filfre.c
236 $ mailx                                    <2>
237 $ git reset                                <3>
238 $ git pull git://info.example.com/ nitfol  <4>
239 ------------
241 <1> You are happily working on something, and find the changes
242 in these files are in good order.  You do not want to see them
243 when you run "git diff", because you plan to work on other files
244 and changes with these files are distracting.
245 <2> Somebody asks you to pull, and the changes sounds worthy of merging.
246 <3> However, you already dirtied the index (i.e. your index does
247 not match the HEAD commit).  But you know the pull you are going
248 to make does not affect frotz.c nor filfre.c, so you revert the
249 index changes for these two files.  Your changes in working tree
250 remain there.
251 <4> Then you can pull and merge, leaving frotz.c and filfre.c
252 changes still in the working tree.
254 Undo a merge or pull::
256 ------------
257 $ git pull                         <1>
258 Auto-merging nitfol
259 CONFLICT (content): Merge conflict in nitfol
260 Automatic merge failed; fix conflicts and then commit the result.
261 $ git reset --hard                 <2>
262 $ git pull . topic/branch          <3>
263 Updating from 41223... to 13134...
264 Fast-forward
265 $ git reset --hard ORIG_HEAD       <4>
266 ------------
268 <1> Try to update from the upstream resulted in a lot of
269 conflicts; you were not ready to spend a lot of time merging
270 right now, so you decide to do that later.
271 <2> "pull" has not made merge commit, so "git reset --hard"
272 which is a synonym for "git reset --hard HEAD" clears the mess
273 from the index file and the working tree.
274 <3> Merge a topic branch into the current branch, which resulted
275 in a fast-forward.
276 <4> But you decided that the topic branch is not ready for public
277 consumption yet.  "pull" or "merge" always leaves the original
278 tip of the current branch in ORIG_HEAD, so resetting hard to it
279 brings your index file and the working tree back to that state,
280 and resets the tip of the branch to that commit.
282 Undo a merge or pull inside a dirty work tree::
284 ------------
285 $ git pull                         <1>
286 Auto-merging nitfol
287 Merge made by recursive.
288  nitfol                |   20 +++++----
289  ...
290 $ git reset --merge ORIG_HEAD      <2>
291 ------------
293 <1> Even if you may have local modifications in your
294 working tree, you can safely say "git pull" when you know
295 that the change in the other branch does not overlap with
296 them.
297 <2> After inspecting the result of the merge, you may find
298 that the change in the other branch is unsatisfactory.  Running
299 "git reset --hard ORIG_HEAD" will let you go back to where you
300 were, but it will discard your local changes, which you do not
301 want.  "git reset --merge" keeps your local changes.
304 Interrupted workflow::
306 Suppose you are interrupted by an urgent fix request while you
307 are in the middle of a large change.  The files in your
308 working tree are not in any shape to be committed yet, but you
309 need to get to the other branch for a quick bugfix.
311 ------------
312 $ git checkout feature ;# you were working in "feature" branch and
313 $ work work work       ;# got interrupted
314 $ git commit -a -m "snapshot WIP"                 <1>
315 $ git checkout master
316 $ fix fix fix
317 $ git commit ;# commit with real log
318 $ git checkout feature
319 $ git reset --soft HEAD^ ;# go back to WIP state  <2>
320 $ git reset                                       <3>
321 ------------
323 <1> This commit will get blown away so a throw-away log message is OK.
324 <2> This removes the 'WIP' commit from the commit history, and sets
325     your working tree to the state just before you made that snapshot.
326 <3> At this point the index file still has all the WIP changes you
327     committed as 'snapshot WIP'.  This updates the index to show your
328     WIP files as uncommitted.
330 See also linkgit:git-stash[1].
332 Reset a single file in the index::
334 Suppose you have added a file to your index, but later decide you do not
335 want to add it to your commit. You can remove the file from the index
336 while keeping your changes with git reset.
338 ------------
339 $ git reset -- frotz.c                      <1>
340 $ git commit -m "Commit files in index"     <2>
341 $ git add frotz.c                           <3>
342 ------------
344 <1> This removes the file from the index while keeping it in the working
345     directory.
346 <2> This commits all other changes in the index.
347 <3> Adds the file to the index again.
349 Keep changes in working tree while discarding some previous commits::
351 Suppose you are working on something and you commit it, and then you
352 continue working a bit more, but now you think that what you have in
353 your working tree should be in another branch that has nothing to do
354 with what you commited previously. You can start a new branch and
355 reset it while keeping the changes in your work tree.
357 ------------
358 $ git tag start
359 $ git checkout -b branch1
360 $ edit
361 $ git commit ...                            <1>
362 $ edit
363 $ git checkout -b branch2                   <2>
364 $ git reset --keep start                    <3>
365 ------------
367 <1> This commits your first edits in branch1.
368 <2> In the ideal world, you could have realized that the earlier
369     commit did not belong to the new topic when you created and switched
370     to branch2 (i.e. "git checkout -b branch2 start"), but nobody is
371     perfect.
372 <3> But you can use "reset --keep" to remove the unwanted commit after
373     you switched to "branch2".
375 Author
376 ------
377 Written by Junio C Hamano <gitster@pobox.com> and Linus Torvalds <torvalds@osdl.org>
379 Documentation
380 --------------
381 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
385 Part of the linkgit:git[1] suite