Autogenerated HTML docs for v1.2.4-g79f5
[git.git] / git-reset.txt
1 git-reset(1)
2 ============
3
4 NAME
5 ----
6 git-reset - Reset current HEAD to the specified state
7
8 SYNOPSIS
9 --------
10 'git-reset' [--mixed | --soft | --hard] [<commit-ish>]
11
12 DESCRIPTION
13 -----------
14 Sets the current head to the specified commit and optionally resets the
15 index and working tree to match.
16
17 This command is useful if you notice some small error in a recent
18 commit (or set of commits) and want to redo that part without showing
19 the undo in the history.
20
21 If you want to undo a commit other than the latest on a branch,
22 gitlink:git-revert[1] is your friend.
23
24 OPTIONS
25 -------
26 --mixed::
27         Resets the index but not the working tree (ie, the changed files
28         are preserved but not marked for commit) and reports what has not
29         been updated. This is the default action.
30
31 --soft::
32         Does not touch the index file nor the working tree at all, but
33         requires them to be in a good order. This leaves all your changed
34         files "Updated but not checked in", as gitlink:git-status[1] would
35         put it.
36
37 --hard::
38         Matches the working tree and index to that of the tree being
39         switched to. Any changes to tracked files in the working tree
40         since <commit-ish> are lost.
41
42 <commit-ish>::
43         Commit to make the current HEAD.
44
45 Examples
46 ~~~~~~~~
47
48 Undo a commit and redo::
49 +
50 ------------
51 $ git commit ...
52 $ git reset --soft HEAD^ <1>
53 $ edit <2>
54 $ git commit -a -c ORIG_HEAD <3>
55
56 <1> This is most often done when you remembered what you
57 just committed is incomplete, or you misspelled your commit
58 message, or both.  Leaves working tree as it was before "reset".
59 <2> make corrections to working tree files.
60 <3> "reset" copies the old head to .git/ORIG_HEAD; redo the
61 commit by starting with its log message.  If you do not need to
62 edit the message further, you can give -C option instead.
63 ------------
64
65 Undo commits permanently::
66 +
67 ------------
68 $ git commit ...
69 $ git reset --hard HEAD~3 <1>
70
71 <1> The last three commits (HEAD, HEAD^, and HEAD~2) were bad
72 and you do not want to ever see them again.  Do *not* do this if
73 you have already given these commits to somebody else.
74 ------------
75
76 Undo a commit, making it a topic branch::
77 +
78 ------------
79 $ git branch topic/wip <1>
80 $ git reset --hard HEAD~3 <2>
81 $ git checkout topic/wip <3>
82
83 <1> You have made some commits, but realize they were premature
84 to be in the "master" branch.  You want to continue polishing
85 them in a topic branch, so create "topic/wip" branch off of the
86 current HEAD.
87 <2> Rewind the master branch to get rid of those three commits.
88 <3> Switch to "topic/wip" branch and keep working.
89 ------------
90
91 Undo update-index::
92 +
93 ------------
94 $ edit <1>
95 $ git-update-index frotz.c filfre.c
96 $ mailx <2>
97 $ git reset <3>
98 $ git pull git://info.example.com/ nitfol <4>
99
100 <1> you are happily working on something, and find the changes
101 in these files are in good order.  You do not want to see them
102 when you run "git diff", because you plan to work on other files
103 and changes with these files are distracting.
104 <2> somebody asks you to pull, and the changes sounds worthy of merging.
105 <3> however, you already dirtied the index (i.e. your index does
106 not match the HEAD commit).  But you know the pull you are going
107 to make does not affect frotz.c nor filfre.c, so you revert the
108 index changes for these two files.  Your changes in working tree
109 remain there.
110 <4> then you can pull and merge, leaving frotz.c and filfre.c
111 changes still in the working tree.
112 ------------
113
114 Undo a merge or pull::
115 +
116 ------------
117 $ git pull <1>
118 Trying really trivial in-index merge...
119 fatal: Merge requires file-level merging
120 Nope.
121 ...
122 Auto-merging nitfol
123 CONFLICT (content): Merge conflict in nitfol
124 Automatic merge failed/prevented; fix up by hand
125 $ git reset --hard <2>
126
127 <1> try to update from the upstream resulted in a lot of
128 conflicts; you were not ready to spend a lot of time merging
129 right now, so you decide to do that later.
130 <2> "pull" has not made merge commit, so "git reset --hard"
131 which is a synonym for "git reset --hard HEAD" clears the mess
132 from the index file and the working tree.
133
134 $ git pull . topic/branch <3>
135 Updating from 41223... to 13134...
136 Fast forward
137 $ git reset --hard ORIG_HEAD <4>
138
139 <3> merge a topic branch into the current branch, which resulted
140 in a fast forward.
141 <4> but you decided that the topic branch is not ready for public
142 consumption yet.  "pull" or "merge" always leaves the original
143 tip of the current branch in ORIG_HEAD, so resetting hard to it
144 brings your index file and the working tree back to that state,
145 and resets the tip of the branch to that commit.
146 ------------
147
148 Interrupted workflow::
149 +
150 Suppose you are interrupted by an urgent fix request while you
151 are in the middle of a large change.  The files in your
152 working tree are not in any shape to be committed yet, but you
153 need to get to the other branch for a quick bugfix.
154 +
155 ------------
156 $ git checkout feature ;# you were working in "feature" branch and
157 $ work work work       ;# got interrupted
158 $ git commit -a -m 'snapshot WIP' <1>
159 $ git checkout master
160 $ fix fix fix
161 $ git commit ;# commit with real log
162 $ git checkout feature
163 $ git reset --soft HEAD^ ;# go back to WIP state <2>
164 $ git reset <3>
165
166 <1> This commit will get blown away so a throw-away log message is OK.
167 <2> This removes the 'WIP' commit from the commit history, and sets
168     your working tree to the state just before you made that snapshot.
169 <3> After <2>, the index file still has all the WIP changes you
170     committed in <1>.  This sets it to the last commit you were
171     basing the WIP changes on.
172 ------------
173
174 Author
175 ------
176 Written by Junio C Hamano <junkio@cox.net> and Linus Torvalds <torvalds@osdl.org>
177
178 Documentation
179 --------------
180 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
181
182 GIT
183 ---
184 Part of the gitlink:git[7] suite