Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 1 | git-reset(1) |
| 2 | ============ |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
Fredrik Kuivinen | 7bd7f28 | 2006-03-09 17:24:50 +0100 | [diff] [blame] | 6 | git-reset - Reset current HEAD to the specified state |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | 6934dec | 2006-12-26 00:21:01 -0800 | [diff] [blame] | 10 | [verse] |
Martin von Zweigbergk | bf44142 | 2013-01-16 10:00:35 -0800 | [diff] [blame] | 11 | 'git reset' [-q] [<tree-ish>] [--] <paths>... |
Stefan Beller | debecc5 | 2013-07-19 18:26:24 +0200 | [diff] [blame] | 12 | 'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...] |
Nguyễn Thái Ngọc Duy | b4b313f | 2014-02-04 09:20:09 +0700 | [diff] [blame] | 13 | 'git reset' [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>] |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 14 | |
| 15 | DESCRIPTION |
| 16 | ----------- |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 17 | In the first and second form, copy entries from `<tree-ish>` to the index. |
| 18 | In the third form, set the current branch head (`HEAD`) to `<commit>`, |
| 19 | optionally modifying index and working tree to match. |
| 20 | The `<tree-ish>`/`<commit>` defaults to `HEAD` in all forms. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 21 | |
Martin von Zweigbergk | bf44142 | 2013-01-16 10:00:35 -0800 | [diff] [blame] | 22 | 'git reset' [-q] [<tree-ish>] [--] <paths>...:: |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 23 | This form resets the index entries for all `<paths>` to their |
| 24 | state at `<tree-ish>`. (It does not affect the working tree or |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 25 | the current branch.) |
| 26 | + |
| 27 | This means that `git reset <paths>` is the opposite of `git add |
Nguyễn Thái Ngọc Duy | 46e91b6 | 2019-04-25 16:45:45 +0700 | [diff] [blame] | 28 | <paths>`. This command is equivalent to |
| 29 | `git restore [--source=<tree-ish>] --staged <paths>...`. |
Michael J Gruber | 9980d7d | 2010-09-15 22:47:43 +0200 | [diff] [blame] | 30 | + |
| 31 | After running `git reset <paths>` to update the index entry, you can |
Nguyễn Thái Ngọc Duy | 80f537f | 2019-04-25 16:45:58 +0700 | [diff] [blame] | 32 | use linkgit:git-restore[1] to check the contents out of the index to |
| 33 | the working tree. Alternatively, using linkgit:git-restore[1] |
| 34 | and specifying a commit with `--source`, you |
Michael J Gruber | 9980d7d | 2010-09-15 22:47:43 +0200 | [diff] [blame] | 35 | can copy the contents of a path out of a commit to the index and to the |
| 36 | working tree in one go. |
Andreas Ericsson | 936a234 | 2005-11-20 22:42:11 +0100 | [diff] [blame] | 37 | |
Martin von Zweigbergk | bf44142 | 2013-01-16 10:00:35 -0800 | [diff] [blame] | 38 | 'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...]:: |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 39 | Interactively select hunks in the difference between the index |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 40 | and `<tree-ish>` (defaults to `HEAD`). The chosen hunks are applied |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 41 | in reverse to the index. |
| 42 | + |
Valentin Haenel | 6086ff6 | 2011-05-05 21:58:18 +0200 | [diff] [blame] | 43 | This means that `git reset -p` is the opposite of `git add -p`, i.e. |
| 44 | you can use it to selectively reset hunks. See the ``Interactive Mode'' |
Jeff King | 6cf378f | 2012-04-26 04:51:57 -0400 | [diff] [blame] | 45 | section of linkgit:git-add[1] to learn how to operate the `--patch` mode. |
Andreas Ericsson | 936a234 | 2005-11-20 22:42:11 +0100 | [diff] [blame] | 46 | |
Krzysztof Mazur | d505865 | 2012-10-28 15:13:27 +0100 | [diff] [blame] | 47 | 'git reset' [<mode>] [<commit>]:: |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 48 | This form resets the current branch head to `<commit>` and |
| 49 | possibly updates the index (resetting it to the tree of `<commit>`) and |
| 50 | the working tree depending on `<mode>`. If `<mode>` is omitted, |
| 51 | defaults to `--mixed`. The `<mode>` must be one of the following: |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 52 | + |
| 53 | -- |
A Large Angry SCM | f67545e | 2005-09-07 17:18:51 -0400 | [diff] [blame] | 54 | --soft:: |
Justin Lebar | a58088a | 2014-03-31 15:11:44 -0700 | [diff] [blame] | 55 | Does not touch the index file or the working tree at all (but |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 56 | resets the head to `<commit>`, just like all modes do). This leaves |
| 57 | all your changed files "Changes to be committed", as `git status` |
Michael J Gruber | cca5d0b | 2010-09-15 22:47:41 +0200 | [diff] [blame] | 58 | would put it. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 59 | |
Thomas Rast | bb59b7f | 2010-07-18 20:23:22 +0200 | [diff] [blame] | 60 | --mixed:: |
| 61 | Resets the index but not the working tree (i.e., the changed files |
| 62 | are preserved but not marked for commit) and reports what has not |
| 63 | been updated. This is the default action. |
Nguyễn Thái Ngọc Duy | b4b313f | 2014-02-04 09:20:09 +0700 | [diff] [blame] | 64 | + |
| 65 | If `-N` is specified, removed paths are marked as intent-to-add (see |
| 66 | linkgit:git-add[1]). |
Thomas Rast | bb59b7f | 2010-07-18 20:23:22 +0200 | [diff] [blame] | 67 | |
A Large Angry SCM | f67545e | 2005-09-07 17:18:51 -0400 | [diff] [blame] | 68 | --hard:: |
Michael J Gruber | d537c74 | 2010-09-15 22:47:44 +0200 | [diff] [blame] | 69 | Resets the index and working tree. Any changes to tracked files in the |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 70 | working tree since `<commit>` are discarded. |
A Large Angry SCM | f67545e | 2005-09-07 17:18:51 -0400 | [diff] [blame] | 71 | |
Junio C Hamano | 1b5b465 | 2008-12-03 18:00:12 -0800 | [diff] [blame] | 72 | --merge:: |
Michael J Gruber | d537c74 | 2010-09-15 22:47:44 +0200 | [diff] [blame] | 73 | Resets the index and updates the files in the working tree that are |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 74 | different between `<commit>` and `HEAD`, but keeps those which are |
Michael J Gruber | d537c74 | 2010-09-15 22:47:44 +0200 | [diff] [blame] | 75 | different between the index and working tree (i.e. which have changes |
| 76 | which have not been added). |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 77 | If a file that is different between `<commit>` and the index has |
| 78 | unstaged changes, reset is aborted. |
Michael J Gruber | d537c74 | 2010-09-15 22:47:44 +0200 | [diff] [blame] | 79 | + |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 80 | In other words, `--merge` does something like a `git read-tree -u -m <commit>`, |
Michael J Gruber | d537c74 | 2010-09-15 22:47:44 +0200 | [diff] [blame] | 81 | but carries forward unmerged index entries. |
Junio C Hamano | 1b5b465 | 2008-12-03 18:00:12 -0800 | [diff] [blame] | 82 | |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 83 | --keep:: |
Jonathan Nieder | 8c0db6f | 2011-01-21 12:37:34 -0600 | [diff] [blame] | 84 | Resets index entries and updates files in the working tree that are |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 85 | different between `<commit>` and `HEAD`. |
| 86 | If a file that is different between `<commit>` and `HEAD` has local |
| 87 | changes, reset is aborted. |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 88 | -- |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 89 | |
Nguyễn Thái Ngọc Duy | 46e91b6 | 2019-04-25 16:45:45 +0700 | [diff] [blame] | 90 | See "Reset, restore and revert" in linkgit:git[1] for the differences |
| 91 | between the three commands. |
Thomas Rast | 7b8cd49 | 2010-07-18 20:23:23 +0200 | [diff] [blame] | 92 | |
| 93 | |
| 94 | OPTIONS |
| 95 | ------- |
Thomas Rast | d002ef4 | 2009-08-15 13:48:31 +0200 | [diff] [blame] | 96 | |
Gerrit Pape | 521b53e | 2007-11-04 09:37:20 +0000 | [diff] [blame] | 97 | -q:: |
Felipe Contreras | 5d2dcc4 | 2009-12-02 23:28:40 +0200 | [diff] [blame] | 98 | --quiet:: |
Ben Peart | 4c3abd0 | 2018-10-23 15:04:22 -0400 | [diff] [blame] | 99 | --no-quiet:: |
| 100 | Be quiet, only report errors. The default behavior is set by the |
| 101 | `reset.quiet` config option. `--quiet` and `--no-quiet` will |
| 102 | override the default behavior. |
Gerrit Pape | 521b53e | 2007-11-04 09:37:20 +0000 | [diff] [blame] | 103 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 104 | |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 105 | EXAMPLES |
sean | 2b5f3ed | 2006-05-05 15:05:10 -0400 | [diff] [blame] | 106 | -------- |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 107 | |
Thomas Rast | 8bb95bb | 2010-07-18 20:23:25 +0200 | [diff] [blame] | 108 | Undo add:: |
| 109 | + |
| 110 | ------------ |
| 111 | $ edit <1> |
| 112 | $ git add frotz.c filfre.c |
| 113 | $ mailx <2> |
| 114 | $ git reset <3> |
| 115 | $ git pull git://info.example.com/ nitfol <4> |
| 116 | ------------ |
| 117 | + |
| 118 | <1> You are happily working on something, and find the changes |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 119 | in these files are in good order. You do not want to see them |
| 120 | when you run `git diff`, because you plan to work on other files |
| 121 | and changes with these files are distracting. |
Štěpán Němec | 680b469 | 2017-06-14 11:36:58 +0200 | [diff] [blame] | 122 | <2> Somebody asks you to pull, and the changes sound worthy of merging. |
Thomas Rast | 8bb95bb | 2010-07-18 20:23:25 +0200 | [diff] [blame] | 123 | <3> However, you already dirtied the index (i.e. your index does |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 124 | not match the `HEAD` commit). But you know the pull you are going |
| 125 | to make does not affect `frotz.c` or `filfre.c`, so you revert the |
| 126 | index changes for these two files. Your changes in working tree |
| 127 | remain there. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 128 | <4> Then you can pull and merge, leaving `frotz.c` and `filfre.c` |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 129 | changes still in the working tree. |
Thomas Rast | 8bb95bb | 2010-07-18 20:23:25 +0200 | [diff] [blame] | 130 | |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 131 | Undo a commit and redo:: |
| 132 | + |
| 133 | ------------ |
| 134 | $ git commit ... |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 135 | $ git reset --soft HEAD^ <1> |
| 136 | $ edit <2> |
| 137 | $ git commit -a -c ORIG_HEAD <3> |
| 138 | ------------ |
| 139 | + |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 140 | <1> This is most often done when you remembered what you |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 141 | just committed is incomplete, or you misspelled your commit |
| 142 | message, or both. Leaves working tree as it was before "reset". |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 143 | <2> Make corrections to working tree files. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 144 | <3> "reset" copies the old head to `.git/ORIG_HEAD`; redo the |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 145 | commit by starting with its log message. If you do not need to |
| 146 | edit the message further, you can give `-C` option instead. |
Gerrit Pape | 41728d6 | 2007-04-23 12:06:29 +0000 | [diff] [blame] | 147 | + |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 148 | See also the `--amend` option to linkgit:git-commit[1]. |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 149 | |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 150 | Undo a commit, making it a topic branch:: |
| 151 | + |
| 152 | ------------ |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 153 | $ git branch topic/wip <1> |
| 154 | $ git reset --hard HEAD~3 <2> |
| 155 | $ git switch topic/wip <3> |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 156 | ------------ |
| 157 | + |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 158 | <1> You have made some commits, but realize they were premature |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 159 | to be in the `master` branch. You want to continue polishing |
| 160 | them in a topic branch, so create `topic/wip` branch off of the |
| 161 | current `HEAD`. |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 162 | <2> Rewind the master branch to get rid of those three commits. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 163 | <3> Switch to `topic/wip` branch and keep working. |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 164 | |
Thomas Rast | 6e90f7b | 2010-07-18 20:23:26 +0200 | [diff] [blame] | 165 | Undo commits permanently:: |
| 166 | + |
| 167 | ------------ |
| 168 | $ git commit ... |
| 169 | $ git reset --hard HEAD~3 <1> |
| 170 | ------------ |
| 171 | + |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 172 | <1> The last three commits (`HEAD`, `HEAD^`, and `HEAD~2`) were bad |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 173 | and you do not want to ever see them again. Do *not* do this if |
| 174 | you have already given these commits to somebody else. (See the |
| 175 | "RECOVERING FROM UPSTREAM REBASE" section in linkgit:git-rebase[1] |
| 176 | for the implications of doing so.) |
Thomas Rast | 6e90f7b | 2010-07-18 20:23:26 +0200 | [diff] [blame] | 177 | |
Junio C Hamano | 3ae854c | 2005-12-16 18:23:33 -0800 | [diff] [blame] | 178 | Undo a merge or pull:: |
| 179 | + |
| 180 | ------------ |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 181 | $ git pull <1> |
Junio C Hamano | 3ae854c | 2005-12-16 18:23:33 -0800 | [diff] [blame] | 182 | Auto-merging nitfol |
| 183 | CONFLICT (content): Merge conflict in nitfol |
Markus Heidelberg | ec9f0ea | 2008-12-19 13:14:52 +0100 | [diff] [blame] | 184 | Automatic merge failed; fix conflicts and then commit the result. |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 185 | $ git reset --hard <2> |
| 186 | $ git pull . topic/branch <3> |
| 187 | Updating from 41223... to 13134... |
Felipe Contreras | a75d7b5 | 2009-10-24 11:31:32 +0300 | [diff] [blame] | 188 | Fast-forward |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 189 | $ git reset --hard ORIG_HEAD <4> |
| 190 | ------------ |
| 191 | + |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 192 | <1> Try to update from the upstream resulted in a lot of |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 193 | conflicts; you were not ready to spend a lot of time merging |
| 194 | right now, so you decide to do that later. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 195 | <2> "pull" has not made merge commit, so `git reset --hard` |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 196 | which is a synonym for `git reset --hard HEAD` clears the mess |
| 197 | from the index file and the working tree. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 198 | <3> Merge a topic branch into the current branch, which resulted |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 199 | in a fast-forward. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 200 | <4> But you decided that the topic branch is not ready for public |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 201 | consumption yet. "pull" or "merge" always leaves the original |
| 202 | tip of the current branch in `ORIG_HEAD`, so resetting hard to it |
| 203 | brings your index file and the working tree back to that state, |
| 204 | and resets the tip of the branch to that commit. |
Junio C Hamano | 1e2ccd3 | 2005-12-12 23:24:06 -0800 | [diff] [blame] | 205 | |
Michael J Gruber | 06cdac5 | 2010-09-15 22:47:42 +0200 | [diff] [blame] | 206 | Undo a merge or pull inside a dirty working tree:: |
Junio C Hamano | 1b5b465 | 2008-12-03 18:00:12 -0800 | [diff] [blame] | 207 | + |
| 208 | ------------ |
| 209 | $ git pull <1> |
| 210 | Auto-merging nitfol |
| 211 | Merge made by recursive. |
| 212 | nitfol | 20 +++++---- |
| 213 | ... |
| 214 | $ git reset --merge ORIG_HEAD <2> |
| 215 | ------------ |
| 216 | + |
| 217 | <1> Even if you may have local modifications in your |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 218 | working tree, you can safely say `git pull` when you know |
| 219 | that the change in the other branch does not overlap with |
| 220 | them. |
Junio C Hamano | 1b5b465 | 2008-12-03 18:00:12 -0800 | [diff] [blame] | 221 | <2> After inspecting the result of the merge, you may find |
Jean-Noël Avila | ba17051 | 2019-01-22 21:16:35 +0100 | [diff] [blame] | 222 | that the change in the other branch is unsatisfactory. Running |
| 223 | `git reset --hard ORIG_HEAD` will let you go back to where you |
| 224 | were, but it will discard your local changes, which you do not |
| 225 | want. `git reset --merge` keeps your local changes. |
Junio C Hamano | 1b5b465 | 2008-12-03 18:00:12 -0800 | [diff] [blame] | 226 | |
| 227 | |
Junio C Hamano | a0dfb48 | 2006-01-13 13:17:55 -0800 | [diff] [blame] | 228 | Interrupted workflow:: |
| 229 | + |
J. Bruce Fields | 8278ac2 | 2006-01-21 18:54:11 -0500 | [diff] [blame] | 230 | Suppose you are interrupted by an urgent fix request while you |
| 231 | are in the middle of a large change. The files in your |
Junio C Hamano | a0dfb48 | 2006-01-13 13:17:55 -0800 | [diff] [blame] | 232 | working tree are not in any shape to be committed yet, but you |
| 233 | need to get to the other branch for a quick bugfix. |
| 234 | + |
| 235 | ------------ |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 236 | $ git switch feature ;# you were working in "feature" branch and |
| 237 | $ work work work ;# got interrupted |
Sergei Organov | d336fc0 | 2007-11-02 20:12:57 +0300 | [diff] [blame] | 238 | $ git commit -a -m "snapshot WIP" <1> |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 239 | $ git switch master |
Junio C Hamano | a0dfb48 | 2006-01-13 13:17:55 -0800 | [diff] [blame] | 240 | $ fix fix fix |
| 241 | $ git commit ;# commit with real log |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 242 | $ git switch feature |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 243 | $ git reset --soft HEAD^ ;# go back to WIP state <2> |
| 244 | $ git reset <3> |
| 245 | ------------ |
| 246 | + |
Junio C Hamano | a0dfb48 | 2006-01-13 13:17:55 -0800 | [diff] [blame] | 247 | <1> This commit will get blown away so a throw-away log message is OK. |
J. Bruce Fields | 8278ac2 | 2006-01-21 18:54:11 -0500 | [diff] [blame] | 248 | <2> This removes the 'WIP' commit from the commit history, and sets |
| 249 | your working tree to the state just before you made that snapshot. |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 250 | <3> At this point the index file still has all the WIP changes you |
| 251 | committed as 'snapshot WIP'. This updates the index to show your |
| 252 | WIP files as uncommitted. |
Markus Heidelberg | 53682f0 | 2008-12-17 03:59:36 +0100 | [diff] [blame] | 253 | + |
| 254 | See also linkgit:git-stash[1]. |
Junio C Hamano | a0dfb48 | 2006-01-13 13:17:55 -0800 | [diff] [blame] | 255 | |
Pieter de Bie | 965053b | 2008-02-16 17:48:46 +0100 | [diff] [blame] | 256 | Reset a single file in the index:: |
| 257 | + |
| 258 | Suppose you have added a file to your index, but later decide you do not |
| 259 | want to add it to your commit. You can remove the file from the index |
| 260 | while keeping your changes with git reset. |
| 261 | + |
| 262 | ------------ |
| 263 | $ git reset -- frotz.c <1> |
| 264 | $ git commit -m "Commit files in index" <2> |
| 265 | $ git add frotz.c <3> |
| 266 | ------------ |
| 267 | + |
| 268 | <1> This removes the file from the index while keeping it in the working |
| 269 | directory. |
| 270 | <2> This commits all other changes in the index. |
| 271 | <3> Adds the file to the index again. |
| 272 | |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 273 | Keep changes in working tree while discarding some previous commits:: |
| 274 | + |
| 275 | Suppose you are working on something and you commit it, and then you |
| 276 | continue working a bit more, but now you think that what you have in |
| 277 | your working tree should be in another branch that has nothing to do |
Ville Skyttä | 6b677a2 | 2010-07-20 00:17:17 +0300 | [diff] [blame] | 278 | with what you committed previously. You can start a new branch and |
Michael J Gruber | 06cdac5 | 2010-09-15 22:47:42 +0200 | [diff] [blame] | 279 | reset it while keeping the changes in your working tree. |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 280 | + |
| 281 | ------------ |
| 282 | $ git tag start |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 283 | $ git switch -c branch1 |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 284 | $ edit |
| 285 | $ git commit ... <1> |
| 286 | $ edit |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 287 | $ git switch -c branch2 <2> |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 288 | $ git reset --keep start <3> |
| 289 | ------------ |
| 290 | + |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 291 | <1> This commits your first edits in `branch1`. |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 292 | <2> In the ideal world, you could have realized that the earlier |
| 293 | commit did not belong to the new topic when you created and switched |
Nguyễn Thái Ngọc Duy | 328c6cb | 2019-03-29 17:39:19 +0700 | [diff] [blame] | 294 | to `branch2` (i.e. `git switch -c branch2 start`), but nobody is |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 295 | perfect. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 296 | <3> But you can use `reset --keep` to remove the unwanted commit after |
| 297 | you switched to `branch2`. |
Christian Couder | 7349df1 | 2010-03-05 21:25:36 +0100 | [diff] [blame] | 298 | |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 299 | Split a commit apart into a sequence of commits:: |
| 300 | + |
Ville Skyttä | 6412757 | 2017-06-25 13:20:41 +0300 | [diff] [blame] | 301 | Suppose that you have created lots of logically separate changes and committed |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 302 | them together. Then, later you decide that it might be better to have each |
| 303 | logical chunk associated with its own commit. You can use git reset to rewind |
| 304 | history without changing the contents of your local files, and then successively |
| 305 | use `git add -p` to interactively select which hunks to include into each commit, |
| 306 | using `git commit -c` to pre-populate the commit message. |
| 307 | + |
| 308 | ------------ |
| 309 | $ git reset -N HEAD^ <1> |
| 310 | $ git add -p <2> |
| 311 | $ git diff --cached <3> |
| 312 | $ git commit -c HEAD@{1} <4> |
| 313 | ... <5> |
| 314 | $ git add ... <6> |
| 315 | $ git diff --cached <7> |
| 316 | $ git commit ... <8> |
| 317 | ------------ |
| 318 | + |
| 319 | <1> First, reset the history back one commit so that we remove the original |
| 320 | commit, but leave the working tree with all the changes. The -N ensures |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 321 | that any new files added with `HEAD` are still marked so that `git add -p` |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 322 | will find them. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 323 | <2> Next, we interactively select diff hunks to add using the `git add -p` |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 324 | facility. This will ask you about each diff hunk in sequence and you can |
| 325 | use simple commands such as "yes, include this", "No don't include this" |
| 326 | or even the very powerful "edit" facility. |
| 327 | <3> Once satisfied with the hunks you want to include, you should verify what |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 328 | has been prepared for the first commit by using `git diff --cached`. This |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 329 | shows all the changes that have been moved into the index and are about |
| 330 | to be committed. |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 331 | <4> Next, commit the changes stored in the index. The `-c` option specifies to |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 332 | pre-populate the commit message from the original message that you started |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 333 | with in the first commit. This is helpful to avoid retyping it. The |
| 334 | `HEAD@{1}` is a special notation for the commit that `HEAD` used to be at |
| 335 | prior to the original reset commit (1 change ago). |
| 336 | See linkgit:git-reflog[1] for more details. You may also use any other |
| 337 | valid commit reference. |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 338 | <5> You can repeat steps 2-4 multiple times to break the original code into |
| 339 | any number of commits. |
| 340 | <6> Now you've split out many of the changes into their own commits, and might |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 341 | no longer use the patch mode of `git add`, in order to select all remaining |
Jacob Keller | f94baa4 | 2017-02-15 16:22:12 -0800 | [diff] [blame] | 342 | uncommitted changes. |
| 343 | <7> Once again, check to verify that you've included what you want to. You may |
| 344 | also wish to verify that git diff doesn't show any remaining changes to be |
| 345 | committed later. |
| 346 | <8> And finally create the final commit. |
| 347 | |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 348 | |
| 349 | DISCUSSION |
| 350 | ---------- |
| 351 | |
| 352 | The tables below show what happens when running: |
| 353 | |
| 354 | ---------- |
| 355 | git reset --option target |
| 356 | ---------- |
| 357 | |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 358 | to reset the `HEAD` to another commit (`target`) with the different |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 359 | reset options depending on the state of the files. |
| 360 | |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 361 | In these tables, `A`, `B`, `C` and `D` are some different states of a |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 362 | file. For example, the first line of the first table means that if a |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 363 | file is in state `A` in the working tree, in state `B` in the index, in |
| 364 | state `C` in `HEAD` and in state `D` in the target, then `git reset --soft |
| 365 | target` will leave the file in the working tree in state `A` and in the |
| 366 | index in state `B`. It resets (i.e. moves) the `HEAD` (i.e. the tip of |
| 367 | the current branch, if you are on one) to `target` (which has the file |
| 368 | in state `D`). |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 369 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 370 | .... |
| 371 | working index HEAD target working index HEAD |
| 372 | ---------------------------------------------------- |
| 373 | A B C D --soft A B D |
| 374 | --mixed A D D |
| 375 | --hard D D D |
| 376 | --merge (disallowed) |
| 377 | --keep (disallowed) |
| 378 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 379 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 380 | .... |
| 381 | working index HEAD target working index HEAD |
| 382 | ---------------------------------------------------- |
| 383 | A B C C --soft A B C |
| 384 | --mixed A C C |
| 385 | --hard C C C |
| 386 | --merge (disallowed) |
| 387 | --keep A C C |
| 388 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 389 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 390 | .... |
| 391 | working index HEAD target working index HEAD |
| 392 | ---------------------------------------------------- |
| 393 | B B C D --soft B B D |
| 394 | --mixed B D D |
| 395 | --hard D D D |
| 396 | --merge D D D |
| 397 | --keep (disallowed) |
| 398 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 399 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 400 | .... |
| 401 | working index HEAD target working index HEAD |
| 402 | ---------------------------------------------------- |
| 403 | B B C C --soft B B C |
| 404 | --mixed B C C |
| 405 | --hard C C C |
| 406 | --merge C C C |
| 407 | --keep B C C |
| 408 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 409 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 410 | .... |
| 411 | working index HEAD target working index HEAD |
| 412 | ---------------------------------------------------- |
| 413 | B C C D --soft B C D |
| 414 | --mixed B D D |
| 415 | --hard D D D |
| 416 | --merge (disallowed) |
| 417 | --keep (disallowed) |
| 418 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 419 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 420 | .... |
| 421 | working index HEAD target working index HEAD |
| 422 | ---------------------------------------------------- |
| 423 | B C C C --soft B C C |
| 424 | --mixed B C C |
| 425 | --hard C C C |
| 426 | --merge B C C |
| 427 | --keep B C C |
| 428 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 429 | |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 430 | `reset --merge` is meant to be used when resetting out of a conflicted |
Michael J Gruber | 06cdac5 | 2010-09-15 22:47:42 +0200 | [diff] [blame] | 431 | merge. Any mergy operation guarantees that the working tree file that is |
Denton Liu | 56cb2d3 | 2019-03-05 15:34:26 -0800 | [diff] [blame] | 432 | involved in the merge does not have a local change with respect to the index |
| 433 | before it starts, and that it writes the result out to the working tree. So if |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 434 | we see some difference between the index and the target and also |
Michael J Gruber | 06cdac5 | 2010-09-15 22:47:42 +0200 | [diff] [blame] | 435 | between the index and the working tree, then it means that we are not |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 436 | resetting out from a state that a mergy operation left after failing |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 437 | with a conflict. That is why we disallow `--merge` option in this case. |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 438 | |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 439 | `reset --keep` is meant to be used when removing some of the last |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 440 | commits in the current branch while keeping changes in the working |
| 441 | tree. If there could be conflicts between the changes in the commit we |
| 442 | want to remove and the changes in the working tree we want to keep, |
| 443 | the reset is disallowed. That's why it is disallowed if there are both |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 444 | changes between the working tree and `HEAD`, and between `HEAD` and the |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 445 | target. To be safe, it is also disallowed when there are unmerged |
| 446 | entries. |
| 447 | |
| 448 | The following tables show what happens when there are unmerged |
| 449 | entries: |
| 450 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 451 | .... |
| 452 | working index HEAD target working index HEAD |
| 453 | ---------------------------------------------------- |
| 454 | X U A B --soft (disallowed) |
| 455 | --mixed X B B |
| 456 | --hard B B B |
| 457 | --merge B B B |
| 458 | --keep (disallowed) |
| 459 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 460 | |
Martin Ågren | 4724f31 | 2018-11-28 20:02:09 +0100 | [diff] [blame] | 461 | .... |
| 462 | working index HEAD target working index HEAD |
| 463 | ---------------------------------------------------- |
| 464 | X U A A --soft (disallowed) |
| 465 | --mixed X A A |
| 466 | --hard A A A |
| 467 | --merge A A A |
| 468 | --keep (disallowed) |
| 469 | .... |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 470 | |
Martin Ågren | 3006f5e | 2018-11-28 20:02:10 +0100 | [diff] [blame] | 471 | `X` means any state and `U` means an unmerged index. |
Thomas Rast | 28bb4b2 | 2010-07-18 20:23:24 +0200 | [diff] [blame] | 472 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 473 | GIT |
| 474 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 475 | Part of the linkgit:git[1] suite |