blob: 252e2d4e47d10404226cce6abfc0132a4d2e9b74 [file] [log] [blame]
Junio C Hamano215a7ad2005-09-07 17:26:23 -07001git-reset(1)
2============
Junio C Hamano7fc9d692005-08-23 01:49:47 -07003
4NAME
5----
Fredrik Kuivinen7bd7f282006-03-09 17:24:50 +01006git-reset - Reset current HEAD to the specified state
Junio C Hamano7fc9d692005-08-23 01:49:47 -07007
8SYNOPSIS
9--------
Junio C Hamano6934dec2006-12-26 00:21:01 -080010[verse]
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000011'git reset' [-q] [<tree-ish>] [--] <pathspec>...
Alexandr Miloslavskiy64bac8d2019-11-19 16:48:53 +000012'git reset' [-q] [--pathspec-from-file=<file> [--pathspec-file-nul]] [<tree-ish>]
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000013'git reset' (--patch | -p) [<tree-ish>] [--] [<pathspec>...]
Nguyễn Thái Ngọc Duyb4b313f2014-02-04 09:20:09 +070014'git reset' [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>]
Junio C Hamano7fc9d692005-08-23 01:49:47 -070015
16DESCRIPTION
17-----------
Alexandr Miloslavskiy64bac8d2019-11-19 16:48:53 +000018In the first three forms, copy entries from `<tree-ish>` to the index.
19In the last form, set the current branch head (`HEAD`) to `<commit>`,
Martin Ågren3006f5e2018-11-28 20:02:10 +010020optionally modifying index and working tree to match.
21The `<tree-ish>`/`<commit>` defaults to `HEAD` in all forms.
Junio C Hamano7fc9d692005-08-23 01:49:47 -070022
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000023'git reset' [-q] [<tree-ish>] [--] <pathspec>...::
Alexandr Miloslavskiy64bac8d2019-11-19 16:48:53 +000024'git reset' [-q] [--pathspec-from-file=<file> [--pathspec-file-nul]] [<tree-ish>]::
25 These forms reset the index entries for all paths that match the
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000026 `<pathspec>` to their state at `<tree-ish>`. (It does not affect
27 the working tree or the current branch.)
Thomas Rast7b8cd492010-07-18 20:23:23 +020028+
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000029This means that `git reset <pathspec>` is the opposite of `git add
30<pathspec>`. This command is equivalent to
31`git restore [--source=<tree-ish>] --staged <pathspec>...`.
Michael J Gruber9980d7d2010-09-15 22:47:43 +020032+
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000033After running `git reset <pathspec>` to update the index entry, you can
Nguyễn Thái Ngọc Duy80f537f2019-04-25 16:45:58 +070034use linkgit:git-restore[1] to check the contents out of the index to
35the working tree. Alternatively, using linkgit:git-restore[1]
36and specifying a commit with `--source`, you
Michael J Gruber9980d7d2010-09-15 22:47:43 +020037can copy the contents of a path out of a commit to the index and to the
38working tree in one go.
Andreas Ericsson936a2342005-11-20 22:42:11 +010039
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +000040'git reset' (--patch | -p) [<tree-ish>] [--] [<pathspec>...]::
Thomas Rast7b8cd492010-07-18 20:23:23 +020041 Interactively select hunks in the difference between the index
Martin Ågren3006f5e2018-11-28 20:02:10 +010042 and `<tree-ish>` (defaults to `HEAD`). The chosen hunks are applied
Thomas Rast7b8cd492010-07-18 20:23:23 +020043 in reverse to the index.
44+
Valentin Haenel6086ff62011-05-05 21:58:18 +020045This means that `git reset -p` is the opposite of `git add -p`, i.e.
46you can use it to selectively reset hunks. See the ``Interactive Mode''
Jeff King6cf378f2012-04-26 04:51:57 -040047section of linkgit:git-add[1] to learn how to operate the `--patch` mode.
Andreas Ericsson936a2342005-11-20 22:42:11 +010048
Krzysztof Mazurd5058652012-10-28 15:13:27 +010049'git reset' [<mode>] [<commit>]::
Martin Ågren3006f5e2018-11-28 20:02:10 +010050 This form resets the current branch head to `<commit>` and
51 possibly updates the index (resetting it to the tree of `<commit>`) and
52 the working tree depending on `<mode>`. If `<mode>` is omitted,
53 defaults to `--mixed`. The `<mode>` must be one of the following:
Thomas Rast7b8cd492010-07-18 20:23:23 +020054+
55--
A Large Angry SCMf67545e2005-09-07 17:18:51 -040056--soft::
Justin Lebara58088a2014-03-31 15:11:44 -070057 Does not touch the index file or the working tree at all (but
Martin Ågren3006f5e2018-11-28 20:02:10 +010058 resets the head to `<commit>`, just like all modes do). This leaves
59 all your changed files "Changes to be committed", as `git status`
Michael J Grubercca5d0b2010-09-15 22:47:41 +020060 would put it.
Junio C Hamano7fc9d692005-08-23 01:49:47 -070061
Thomas Rastbb59b7f2010-07-18 20:23:22 +020062--mixed::
63 Resets the index but not the working tree (i.e., the changed files
64 are preserved but not marked for commit) and reports what has not
65 been updated. This is the default action.
Nguyễn Thái Ngọc Duyb4b313f2014-02-04 09:20:09 +070066+
67If `-N` is specified, removed paths are marked as intent-to-add (see
68linkgit:git-add[1]).
Thomas Rastbb59b7f2010-07-18 20:23:22 +020069
A Large Angry SCMf67545e2005-09-07 17:18:51 -040070--hard::
Michael J Gruberd537c742010-09-15 22:47:44 +020071 Resets the index and working tree. Any changes to tracked files in the
Martin Ågren3006f5e2018-11-28 20:02:10 +010072 working tree since `<commit>` are discarded.
A Large Angry SCMf67545e2005-09-07 17:18:51 -040073
Junio C Hamano1b5b4652008-12-03 18:00:12 -080074--merge::
Michael J Gruberd537c742010-09-15 22:47:44 +020075 Resets the index and updates the files in the working tree that are
Martin Ågren3006f5e2018-11-28 20:02:10 +010076 different between `<commit>` and `HEAD`, but keeps those which are
Michael J Gruberd537c742010-09-15 22:47:44 +020077 different between the index and working tree (i.e. which have changes
78 which have not been added).
Martin Ågren3006f5e2018-11-28 20:02:10 +010079 If a file that is different between `<commit>` and the index has
80 unstaged changes, reset is aborted.
Michael J Gruberd537c742010-09-15 22:47:44 +020081+
Martin Ågren3006f5e2018-11-28 20:02:10 +010082In other words, `--merge` does something like a `git read-tree -u -m <commit>`,
Michael J Gruberd537c742010-09-15 22:47:44 +020083but carries forward unmerged index entries.
Junio C Hamano1b5b4652008-12-03 18:00:12 -080084
Christian Couder7349df12010-03-05 21:25:36 +010085--keep::
Jonathan Nieder8c0db6f2011-01-21 12:37:34 -060086 Resets index entries and updates files in the working tree that are
Martin Ågren3006f5e2018-11-28 20:02:10 +010087 different between `<commit>` and `HEAD`.
88 If a file that is different between `<commit>` and `HEAD` has local
89 changes, reset is aborted.
Damien Robertb3cec572020-04-06 15:57:06 +020090
91--[no-]recurse-submodules::
92 When the working tree is updated, using --recurse-submodules will
93 also recursively reset the working tree of all active submodules
94 according to the commit recorded in the superproject, also setting
95 the submodules' HEAD to be detached at that commit.
Thomas Rast7b8cd492010-07-18 20:23:23 +020096--
Christian Couder7349df12010-03-05 21:25:36 +010097
Nguyễn Thái Ngọc Duy46e91b62019-04-25 16:45:45 +070098See "Reset, restore and revert" in linkgit:git[1] for the differences
99between the three commands.
Thomas Rast7b8cd492010-07-18 20:23:23 +0200100
101
102OPTIONS
103-------
Thomas Rastd002ef42009-08-15 13:48:31 +0200104
Gerrit Pape521b53e2007-11-04 09:37:20 +0000105-q::
Felipe Contreras5d2dcc42009-12-02 23:28:40 +0200106--quiet::
Ben Peart4c3abd02018-10-23 15:04:22 -0400107--no-quiet::
108 Be quiet, only report errors. The default behavior is set by the
109 `reset.quiet` config option. `--quiet` and `--no-quiet` will
110 override the default behavior.
Gerrit Pape521b53e2007-11-04 09:37:20 +0000111
Alexandr Miloslavskiy64bac8d2019-11-19 16:48:53 +0000112--pathspec-from-file=<file>::
113 Pathspec is passed in `<file>` instead of commandline args. If
114 `<file>` is exactly `-` then standard input is used. Pathspec
115 elements are separated by LF or CR/LF. Pathspec elements can be
116 quoted as explained for the configuration variable `core.quotePath`
117 (see linkgit:git-config[1]). See also `--pathspec-file-nul` and
118 global `--literal-pathspecs`.
119
120--pathspec-file-nul::
121 Only meaningful with `--pathspec-from-file`. Pathspec elements are
122 separated with NUL character and all other characters are taken
123 literally (including newlines and quotes).
124
Alexandr Miloslavskiyd137b502019-11-19 16:48:52 +0000125\--::
126 Do not interpret any more arguments as options.
127
128<pathspec>...::
129 Limits the paths affected by the operation.
130+
131For more details, see the 'pathspec' entry in linkgit:gitglossary[7].
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700132
Thomas Rast28bb4b22010-07-18 20:23:24 +0200133EXAMPLES
sean2b5f3ed2006-05-05 15:05:10 -0400134--------
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800135
Thomas Rast8bb95bb2010-07-18 20:23:25 +0200136Undo add::
137+
138------------
139$ edit <1>
140$ git add frotz.c filfre.c
141$ mailx <2>
142$ git reset <3>
143$ git pull git://info.example.com/ nitfol <4>
144------------
145+
146<1> You are happily working on something, and find the changes
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100147 in these files are in good order. You do not want to see them
148 when you run `git diff`, because you plan to work on other files
149 and changes with these files are distracting.
Štěpán Němec680b4692017-06-14 11:36:58 +0200150<2> Somebody asks you to pull, and the changes sound worthy of merging.
Thomas Rast8bb95bb2010-07-18 20:23:25 +0200151<3> However, you already dirtied the index (i.e. your index does
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100152 not match the `HEAD` commit). But you know the pull you are going
153 to make does not affect `frotz.c` or `filfre.c`, so you revert the
154 index changes for these two files. Your changes in working tree
155 remain there.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100156<4> Then you can pull and merge, leaving `frotz.c` and `filfre.c`
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100157 changes still in the working tree.
Thomas Rast8bb95bb2010-07-18 20:23:25 +0200158
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800159Undo a commit and redo::
160+
161------------
162$ git commit ...
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400163$ git reset --soft HEAD^ <1>
164$ edit <2>
165$ git commit -a -c ORIG_HEAD <3>
166------------
167+
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800168<1> This is most often done when you remembered what you
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100169 just committed is incomplete, or you misspelled your commit
170 message, or both. Leaves working tree as it was before "reset".
Steve Hoelzer434e6ef2007-08-01 10:43:06 -0500171<2> Make corrections to working tree files.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100172<3> "reset" copies the old head to `.git/ORIG_HEAD`; redo the
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100173 commit by starting with its log message. If you do not need to
174 edit the message further, you can give `-C` option instead.
Gerrit Pape41728d62007-04-23 12:06:29 +0000175+
Martin Ågren3006f5e2018-11-28 20:02:10 +0100176See also the `--amend` option to linkgit:git-commit[1].
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800177
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800178Undo a commit, making it a topic branch::
179+
180------------
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700181$ git branch topic/wip <1>
182$ git reset --hard HEAD~3 <2>
183$ git switch topic/wip <3>
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400184------------
185+
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800186<1> You have made some commits, but realize they were premature
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100187 to be in the `master` branch. You want to continue polishing
188 them in a topic branch, so create `topic/wip` branch off of the
189 current `HEAD`.
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800190<2> Rewind the master branch to get rid of those three commits.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100191<3> Switch to `topic/wip` branch and keep working.
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800192
Thomas Rast6e90f7b2010-07-18 20:23:26 +0200193Undo commits permanently::
194+
195------------
196$ git commit ...
197$ git reset --hard HEAD~3 <1>
198------------
199+
Martin Ågren3006f5e2018-11-28 20:02:10 +0100200<1> The last three commits (`HEAD`, `HEAD^`, and `HEAD~2`) were bad
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100201 and you do not want to ever see them again. Do *not* do this if
202 you have already given these commits to somebody else. (See the
203 "RECOVERING FROM UPSTREAM REBASE" section in linkgit:git-rebase[1]
204 for the implications of doing so.)
Thomas Rast6e90f7b2010-07-18 20:23:26 +0200205
Junio C Hamano3ae854c2005-12-16 18:23:33 -0800206Undo a merge or pull::
207+
208------------
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400209$ git pull <1>
Junio C Hamano3ae854c2005-12-16 18:23:33 -0800210Auto-merging nitfol
211CONFLICT (content): Merge conflict in nitfol
Markus Heidelbergec9f0ea2008-12-19 13:14:52 +0100212Automatic merge failed; fix conflicts and then commit the result.
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400213$ git reset --hard <2>
214$ git pull . topic/branch <3>
215Updating from 41223... to 13134...
Felipe Contrerasa75d7b52009-10-24 11:31:32 +0300216Fast-forward
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400217$ git reset --hard ORIG_HEAD <4>
218------------
219+
Steve Hoelzer434e6ef2007-08-01 10:43:06 -0500220<1> Try to update from the upstream resulted in a lot of
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100221 conflicts; you were not ready to spend a lot of time merging
222 right now, so you decide to do that later.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100223<2> "pull" has not made merge commit, so `git reset --hard`
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100224 which is a synonym for `git reset --hard HEAD` clears the mess
225 from the index file and the working tree.
Steve Hoelzer434e6ef2007-08-01 10:43:06 -0500226<3> Merge a topic branch into the current branch, which resulted
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100227 in a fast-forward.
Steve Hoelzer434e6ef2007-08-01 10:43:06 -0500228<4> But you decided that the topic branch is not ready for public
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100229 consumption yet. "pull" or "merge" always leaves the original
230 tip of the current branch in `ORIG_HEAD`, so resetting hard to it
231 brings your index file and the working tree back to that state,
232 and resets the tip of the branch to that commit.
Junio C Hamano1e2ccd32005-12-12 23:24:06 -0800233
Michael J Gruber06cdac52010-09-15 22:47:42 +0200234Undo a merge or pull inside a dirty working tree::
Junio C Hamano1b5b4652008-12-03 18:00:12 -0800235+
236------------
237$ git pull <1>
238Auto-merging nitfol
239Merge made by recursive.
240 nitfol | 20 +++++----
241 ...
242$ git reset --merge ORIG_HEAD <2>
243------------
244+
245<1> Even if you may have local modifications in your
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100246 working tree, you can safely say `git pull` when you know
247 that the change in the other branch does not overlap with
248 them.
Junio C Hamano1b5b4652008-12-03 18:00:12 -0800249<2> After inspecting the result of the merge, you may find
Jean-Noël Avilaba170512019-01-22 21:16:35 +0100250 that the change in the other branch is unsatisfactory. Running
251 `git reset --hard ORIG_HEAD` will let you go back to where you
252 were, but it will discard your local changes, which you do not
253 want. `git reset --merge` keeps your local changes.
Junio C Hamano1b5b4652008-12-03 18:00:12 -0800254
255
Junio C Hamanoa0dfb482006-01-13 13:17:55 -0800256Interrupted workflow::
257+
J. Bruce Fields8278ac22006-01-21 18:54:11 -0500258Suppose you are interrupted by an urgent fix request while you
259are in the middle of a large change. The files in your
Junio C Hamanoa0dfb482006-01-13 13:17:55 -0800260working tree are not in any shape to be committed yet, but you
261need to get to the other branch for a quick bugfix.
262+
263------------
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700264$ git switch feature ;# you were working in "feature" branch and
265$ work work work ;# got interrupted
Sergei Organovd336fc02007-11-02 20:12:57 +0300266$ git commit -a -m "snapshot WIP" <1>
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700267$ git switch master
Junio C Hamanoa0dfb482006-01-13 13:17:55 -0800268$ fix fix fix
269$ git commit ;# commit with real log
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700270$ git switch feature
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400271$ git reset --soft HEAD^ ;# go back to WIP state <2>
272$ git reset <3>
273------------
274+
Junio C Hamanoa0dfb482006-01-13 13:17:55 -0800275<1> This commit will get blown away so a throw-away log message is OK.
J. Bruce Fields8278ac22006-01-21 18:54:11 -0500276<2> This removes the 'WIP' commit from the commit history, and sets
277 your working tree to the state just before you made that snapshot.
Sean Estabrooks48aeecd2006-04-28 09:15:05 -0400278<3> At this point the index file still has all the WIP changes you
279 committed as 'snapshot WIP'. This updates the index to show your
280 WIP files as uncommitted.
Markus Heidelberg53682f02008-12-17 03:59:36 +0100281+
282See also linkgit:git-stash[1].
Junio C Hamanoa0dfb482006-01-13 13:17:55 -0800283
Pieter de Bie965053b2008-02-16 17:48:46 +0100284Reset a single file in the index::
285+
286Suppose you have added a file to your index, but later decide you do not
287want to add it to your commit. You can remove the file from the index
288while keeping your changes with git reset.
289+
290------------
291$ git reset -- frotz.c <1>
292$ git commit -m "Commit files in index" <2>
293$ git add frotz.c <3>
294------------
295+
296<1> This removes the file from the index while keeping it in the working
297 directory.
298<2> This commits all other changes in the index.
299<3> Adds the file to the index again.
300
Christian Couder7349df12010-03-05 21:25:36 +0100301Keep changes in working tree while discarding some previous commits::
302+
303Suppose you are working on something and you commit it, and then you
304continue working a bit more, but now you think that what you have in
305your working tree should be in another branch that has nothing to do
Ville Skyttä6b677a22010-07-20 00:17:17 +0300306with what you committed previously. You can start a new branch and
Michael J Gruber06cdac52010-09-15 22:47:42 +0200307reset it while keeping the changes in your working tree.
Christian Couder7349df12010-03-05 21:25:36 +0100308+
309------------
310$ git tag start
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700311$ git switch -c branch1
Christian Couder7349df12010-03-05 21:25:36 +0100312$ edit
313$ git commit ... <1>
314$ edit
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700315$ git switch -c branch2 <2>
Christian Couder7349df12010-03-05 21:25:36 +0100316$ git reset --keep start <3>
317------------
318+
Martin Ågren3006f5e2018-11-28 20:02:10 +0100319<1> This commits your first edits in `branch1`.
Christian Couder7349df12010-03-05 21:25:36 +0100320<2> In the ideal world, you could have realized that the earlier
321 commit did not belong to the new topic when you created and switched
Nguyễn Thái Ngọc Duy328c6cb2019-03-29 17:39:19 +0700322 to `branch2` (i.e. `git switch -c branch2 start`), but nobody is
Christian Couder7349df12010-03-05 21:25:36 +0100323 perfect.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100324<3> But you can use `reset --keep` to remove the unwanted commit after
325 you switched to `branch2`.
Christian Couder7349df12010-03-05 21:25:36 +0100326
Jacob Kellerf94baa42017-02-15 16:22:12 -0800327Split a commit apart into a sequence of commits::
328+
Ville Skyttä64127572017-06-25 13:20:41 +0300329Suppose that you have created lots of logically separate changes and committed
Jacob Kellerf94baa42017-02-15 16:22:12 -0800330them together. Then, later you decide that it might be better to have each
331logical chunk associated with its own commit. You can use git reset to rewind
332history without changing the contents of your local files, and then successively
333use `git add -p` to interactively select which hunks to include into each commit,
334using `git commit -c` to pre-populate the commit message.
335+
336------------
337$ git reset -N HEAD^ <1>
338$ git add -p <2>
339$ git diff --cached <3>
340$ git commit -c HEAD@{1} <4>
341... <5>
342$ git add ... <6>
343$ git diff --cached <7>
344$ git commit ... <8>
345------------
346+
347<1> First, reset the history back one commit so that we remove the original
348 commit, but leave the working tree with all the changes. The -N ensures
Martin Ågren3006f5e2018-11-28 20:02:10 +0100349 that any new files added with `HEAD` are still marked so that `git add -p`
Jacob Kellerf94baa42017-02-15 16:22:12 -0800350 will find them.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100351<2> Next, we interactively select diff hunks to add using the `git add -p`
Jacob Kellerf94baa42017-02-15 16:22:12 -0800352 facility. This will ask you about each diff hunk in sequence and you can
353 use simple commands such as "yes, include this", "No don't include this"
354 or even the very powerful "edit" facility.
355<3> Once satisfied with the hunks you want to include, you should verify what
Martin Ågren3006f5e2018-11-28 20:02:10 +0100356 has been prepared for the first commit by using `git diff --cached`. This
Jacob Kellerf94baa42017-02-15 16:22:12 -0800357 shows all the changes that have been moved into the index and are about
358 to be committed.
Martin Ågren3006f5e2018-11-28 20:02:10 +0100359<4> Next, commit the changes stored in the index. The `-c` option specifies to
Jacob Kellerf94baa42017-02-15 16:22:12 -0800360 pre-populate the commit message from the original message that you started
Martin Ågren3006f5e2018-11-28 20:02:10 +0100361 with in the first commit. This is helpful to avoid retyping it. The
362 `HEAD@{1}` is a special notation for the commit that `HEAD` used to be at
363 prior to the original reset commit (1 change ago).
364 See linkgit:git-reflog[1] for more details. You may also use any other
365 valid commit reference.
Jacob Kellerf94baa42017-02-15 16:22:12 -0800366<5> You can repeat steps 2-4 multiple times to break the original code into
367 any number of commits.
368<6> Now you've split out many of the changes into their own commits, and might
Martin Ågren3006f5e2018-11-28 20:02:10 +0100369 no longer use the patch mode of `git add`, in order to select all remaining
Jacob Kellerf94baa42017-02-15 16:22:12 -0800370 uncommitted changes.
371<7> Once again, check to verify that you've included what you want to. You may
372 also wish to verify that git diff doesn't show any remaining changes to be
373 committed later.
374<8> And finally create the final commit.
375
Thomas Rast28bb4b22010-07-18 20:23:24 +0200376
377DISCUSSION
378----------
379
380The tables below show what happens when running:
381
382----------
383git reset --option target
384----------
385
Martin Ågren3006f5e2018-11-28 20:02:10 +0100386to reset the `HEAD` to another commit (`target`) with the different
Thomas Rast28bb4b22010-07-18 20:23:24 +0200387reset options depending on the state of the files.
388
Martin Ågren3006f5e2018-11-28 20:02:10 +0100389In these tables, `A`, `B`, `C` and `D` are some different states of a
Thomas Rast28bb4b22010-07-18 20:23:24 +0200390file. For example, the first line of the first table means that if a
Martin Ågren3006f5e2018-11-28 20:02:10 +0100391file is in state `A` in the working tree, in state `B` in the index, in
392state `C` in `HEAD` and in state `D` in the target, then `git reset --soft
393target` will leave the file in the working tree in state `A` and in the
394index in state `B`. It resets (i.e. moves) the `HEAD` (i.e. the tip of
395the current branch, if you are on one) to `target` (which has the file
396in state `D`).
Thomas Rast28bb4b22010-07-18 20:23:24 +0200397
Martin Ågren4724f312018-11-28 20:02:09 +0100398....
399working index HEAD target working index HEAD
400----------------------------------------------------
401 A B C D --soft A B D
402 --mixed A D D
403 --hard D D D
404 --merge (disallowed)
405 --keep (disallowed)
406....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200407
Martin Ågren4724f312018-11-28 20:02:09 +0100408....
409working index HEAD target working index HEAD
410----------------------------------------------------
411 A B C C --soft A B C
412 --mixed A C C
413 --hard C C C
414 --merge (disallowed)
415 --keep A C C
416....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200417
Martin Ågren4724f312018-11-28 20:02:09 +0100418....
419working index HEAD target working index HEAD
420----------------------------------------------------
421 B B C D --soft B B D
422 --mixed B D D
423 --hard D D D
424 --merge D D D
425 --keep (disallowed)
426....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200427
Martin Ågren4724f312018-11-28 20:02:09 +0100428....
429working index HEAD target working index HEAD
430----------------------------------------------------
431 B B C C --soft B B C
432 --mixed B C C
433 --hard C C C
434 --merge C C C
435 --keep B C C
436....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200437
Martin Ågren4724f312018-11-28 20:02:09 +0100438....
439working index HEAD target working index HEAD
440----------------------------------------------------
441 B C C D --soft B C D
442 --mixed B D D
443 --hard D D D
444 --merge (disallowed)
445 --keep (disallowed)
446....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200447
Martin Ågren4724f312018-11-28 20:02:09 +0100448....
449working index HEAD target working index HEAD
450----------------------------------------------------
451 B C C C --soft B C C
452 --mixed B C C
453 --hard C C C
454 --merge B C C
455 --keep B C C
456....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200457
Martin Ågren3006f5e2018-11-28 20:02:10 +0100458`reset --merge` is meant to be used when resetting out of a conflicted
Michael J Gruber06cdac52010-09-15 22:47:42 +0200459merge. Any mergy operation guarantees that the working tree file that is
Denton Liu56cb2d32019-03-05 15:34:26 -0800460involved in the merge does not have a local change with respect to the index
461before it starts, and that it writes the result out to the working tree. So if
Thomas Rast28bb4b22010-07-18 20:23:24 +0200462we see some difference between the index and the target and also
Michael J Gruber06cdac52010-09-15 22:47:42 +0200463between the index and the working tree, then it means that we are not
Thomas Rast28bb4b22010-07-18 20:23:24 +0200464resetting out from a state that a mergy operation left after failing
Martin Ågren3006f5e2018-11-28 20:02:10 +0100465with a conflict. That is why we disallow `--merge` option in this case.
Thomas Rast28bb4b22010-07-18 20:23:24 +0200466
Martin Ågren3006f5e2018-11-28 20:02:10 +0100467`reset --keep` is meant to be used when removing some of the last
Thomas Rast28bb4b22010-07-18 20:23:24 +0200468commits in the current branch while keeping changes in the working
469tree. If there could be conflicts between the changes in the commit we
470want to remove and the changes in the working tree we want to keep,
471the reset is disallowed. That's why it is disallowed if there are both
Martin Ågren3006f5e2018-11-28 20:02:10 +0100472changes between the working tree and `HEAD`, and between `HEAD` and the
Thomas Rast28bb4b22010-07-18 20:23:24 +0200473target. To be safe, it is also disallowed when there are unmerged
474entries.
475
476The following tables show what happens when there are unmerged
477entries:
478
Martin Ågren4724f312018-11-28 20:02:09 +0100479....
480working index HEAD target working index HEAD
481----------------------------------------------------
482 X U A B --soft (disallowed)
483 --mixed X B B
484 --hard B B B
485 --merge B B B
486 --keep (disallowed)
487....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200488
Martin Ågren4724f312018-11-28 20:02:09 +0100489....
490working index HEAD target working index HEAD
491----------------------------------------------------
492 X U A A --soft (disallowed)
493 --mixed X A A
494 --hard A A A
495 --merge A A A
496 --keep (disallowed)
497....
Thomas Rast28bb4b22010-07-18 20:23:24 +0200498
Martin Ågren3006f5e2018-11-28 20:02:10 +0100499`X` means any state and `U` means an unmerged index.
Thomas Rast28bb4b22010-07-18 20:23:24 +0200500
Junio C Hamano7fc9d692005-08-23 01:49:47 -0700501GIT
502---
Christian Couder9e1f0a82008-06-06 09:07:32 +0200503Part of the linkgit:git[1] suite