Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-reset(1) |
| 2 | ============ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 0107892 | 2006-03-10 00:31:47 | [diff] [blame] | 6 | git-reset - Reset current HEAD to the specified state |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | d793de5 | 2006-12-26 09:11:43 | [diff] [blame] | 10 | [verse] |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 11 | 'git reset' [-q] [<tree-ish>] [--] <paths>... |
Junio C Hamano | 4e1d0cb | 2013-07-19 20:43:00 | [diff] [blame] | 12 | 'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...] |
Junio C Hamano | 5b3533d | 2014-02-27 23:07:15 | [diff] [blame] | 13 | 'git reset' [--soft | --mixed [-N] | --hard | --merge | --keep] [-q] [<commit>] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 14 | |
| 15 | DESCRIPTION |
| 16 | ----------- |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 17 | In the first and second form, copy entries from <tree-ish> to the index. |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 18 | In the third form, set the current branch head (HEAD) to <commit>, optionally |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 19 | modifying index and working tree to match. The <tree-ish>/<commit> defaults |
| 20 | to HEAD in all forms. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 21 | |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 22 | 'git reset' [-q] [<tree-ish>] [--] <paths>...:: |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 23 | This form resets the index entries for all <paths> to their |
Junio C Hamano | d75148a | 2014-04-08 19:48:38 | [diff] [blame] | 24 | state at <tree-ish>. (It does not affect the working tree or |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 25 | the current branch.) |
| 26 | + |
| 27 | This means that `git reset <paths>` is the opposite of `git add |
| 28 | <paths>`. |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 29 | + |
| 30 | After running `git reset <paths>` to update the index entry, you can |
| 31 | use linkgit:git-checkout[1] to check the contents out of the index to |
| 32 | the working tree. |
| 33 | Alternatively, using linkgit:git-checkout[1] and specifying a commit, you |
| 34 | can copy the contents of a path out of a commit to the index and to the |
| 35 | working tree in one go. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 36 | |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 37 | 'git reset' (--patch | -p) [<tree-ish>] [--] [<paths>...]:: |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 38 | Interactively select hunks in the difference between the index |
Junio C Hamano | e77c5d0 | 2013-01-22 19:19:59 | [diff] [blame] | 39 | and <tree-ish> (defaults to HEAD). The chosen hunks are applied |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 40 | in reverse to the index. |
| 41 | + |
Junio C Hamano | 9eb5835 | 2011-05-11 20:09:24 | [diff] [blame] | 42 | This means that `git reset -p` is the opposite of `git add -p`, i.e. |
| 43 | you can use it to selectively reset hunks. See the ``Interactive Mode'' |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 44 | section of linkgit:git-add[1] to learn how to operate the `--patch` mode. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 45 | |
Junio C Hamano | a129545 | 2012-11-13 22:32:04 | [diff] [blame] | 46 | 'git reset' [<mode>] [<commit>]:: |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 47 | This form resets the current branch head to <commit> and |
| 48 | possibly updates the index (resetting it to the tree of <commit>) and |
Junio C Hamano | a129545 | 2012-11-13 22:32:04 | [diff] [blame] | 49 | the working tree depending on <mode>. If <mode> is omitted, |
| 50 | defaults to "--mixed". The <mode> must be one of the following: |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 51 | + |
| 52 | -- |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 53 | --soft:: |
Junio C Hamano | d75148a | 2014-04-08 19:48:38 | [diff] [blame] | 54 | Does not touch the index file or the working tree at all (but |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 55 | resets the head to <commit>, just like all modes do). This leaves |
| 56 | all your changed files "Changes to be committed", as 'git status' |
| 57 | would put it. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 58 | |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 59 | --mixed:: |
| 60 | Resets the index but not the working tree (i.e., the changed files |
| 61 | are preserved but not marked for commit) and reports what has not |
| 62 | been updated. This is the default action. |
Junio C Hamano | 5b3533d | 2014-02-27 23:07:15 | [diff] [blame] | 63 | + |
| 64 | If `-N` is specified, removed paths are marked as intent-to-add (see |
| 65 | linkgit:git-add[1]). |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 66 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 67 | --hard:: |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 68 | Resets the index and working tree. Any changes to tracked files in the |
| 69 | working tree since <commit> are discarded. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 70 | |
Junio C Hamano | bbbb865 | 2008-12-29 10:34:22 | [diff] [blame] | 71 | --merge:: |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 72 | Resets the index and updates the files in the working tree that are |
| 73 | different between <commit> and HEAD, but keeps those which are |
| 74 | different between the index and working tree (i.e. which have changes |
| 75 | which have not been added). |
| 76 | If a file that is different between <commit> and the index has unstaged |
| 77 | changes, reset is aborted. |
| 78 | + |
| 79 | In other words, --merge does something like a 'git read-tree -u -m <commit>', |
| 80 | but carries forward unmerged index entries. |
Junio C Hamano | bbbb865 | 2008-12-29 10:34:22 | [diff] [blame] | 81 | |
Junio C Hamano | 0299d92 | 2010-03-20 20:59:31 | [diff] [blame] | 82 | --keep:: |
Junio C Hamano | 20338b4 | 2011-01-22 00:51:59 | [diff] [blame] | 83 | Resets index entries and updates files in the working tree that are |
| 84 | different between <commit> and HEAD. |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 85 | If a file that is different between <commit> and HEAD has local changes, |
| 86 | reset is aborted. |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 87 | -- |
Junio C Hamano | 0299d92 | 2010-03-20 20:59:31 | [diff] [blame] | 88 | |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 89 | If you want to undo a commit other than the latest on a branch, |
| 90 | linkgit:git-revert[1] is your friend. |
| 91 | |
| 92 | |
| 93 | OPTIONS |
| 94 | ------- |
Junio C Hamano | c28068f | 2009-09-08 00:55:23 | [diff] [blame] | 95 | |
Junio C Hamano | 422cfec | 2007-11-08 08:07:45 | [diff] [blame] | 96 | -q:: |
Junio C Hamano | b141a92 | 2010-01-10 19:55:14 | [diff] [blame] | 97 | --quiet:: |
Junio C Hamano | 422cfec | 2007-11-08 08:07:45 | [diff] [blame] | 98 | Be quiet, only report errors. |
| 99 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 100 | |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 101 | EXAMPLES |
Junio C Hamano | 1bb569e | 2006-05-05 23:14:25 | [diff] [blame] | 102 | -------- |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 103 | |
Junio C Hamano | 89d4e0f | 2007-02-18 00:34:59 | [diff] [blame] | 104 | Undo add:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 105 | + |
| 106 | ------------ |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 107 | $ edit <1> |
Junio C Hamano | 89d4e0f | 2007-02-18 00:34:59 | [diff] [blame] | 108 | $ git add frotz.c filfre.c |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 109 | $ mailx <2> |
| 110 | $ git reset <3> |
| 111 | $ git pull git://info.example.com/ nitfol <4> |
| 112 | ------------ |
| 113 | + |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 114 | <1> You are happily working on something, and find the changes |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 115 | in these files are in good order. You do not want to see them |
| 116 | when you run "git diff", because you plan to work on other files |
| 117 | and changes with these files are distracting. |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 118 | <2> Somebody asks you to pull, and the changes sounds worthy of merging. |
| 119 | <3> However, you already dirtied the index (i.e. your index does |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 120 | not match the HEAD commit). But you know the pull you are going |
Junio C Hamano | d75148a | 2014-04-08 19:48:38 | [diff] [blame] | 121 | to make does not affect frotz.c or filfre.c, so you revert the |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 122 | index changes for these two files. Your changes in working tree |
| 123 | remain there. |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 124 | <4> Then you can pull and merge, leaving frotz.c and filfre.c |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 125 | changes still in the working tree. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 126 | |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 127 | Undo a commit and redo:: |
| 128 | + |
| 129 | ------------ |
| 130 | $ git commit ... |
| 131 | $ git reset --soft HEAD^ <1> |
| 132 | $ edit <2> |
| 133 | $ git commit -a -c ORIG_HEAD <3> |
| 134 | ------------ |
| 135 | + |
| 136 | <1> This is most often done when you remembered what you |
| 137 | just committed is incomplete, or you misspelled your commit |
| 138 | message, or both. Leaves working tree as it was before "reset". |
| 139 | <2> Make corrections to working tree files. |
| 140 | <3> "reset" copies the old head to .git/ORIG_HEAD; redo the |
| 141 | commit by starting with its log message. If you do not need to |
| 142 | edit the message further, you can give -C option instead. |
| 143 | + |
| 144 | See also the --amend option to linkgit:git-commit[1]. |
| 145 | |
| 146 | Undo a commit, making it a topic branch:: |
| 147 | + |
| 148 | ------------ |
| 149 | $ git branch topic/wip <1> |
| 150 | $ git reset --hard HEAD~3 <2> |
| 151 | $ git checkout topic/wip <3> |
| 152 | ------------ |
| 153 | + |
| 154 | <1> You have made some commits, but realize they were premature |
| 155 | to be in the "master" branch. You want to continue polishing |
| 156 | them in a topic branch, so create "topic/wip" branch off of the |
| 157 | current HEAD. |
| 158 | <2> Rewind the master branch to get rid of those three commits. |
| 159 | <3> Switch to "topic/wip" branch and keep working. |
| 160 | |
| 161 | Undo commits permanently:: |
| 162 | + |
| 163 | ------------ |
| 164 | $ git commit ... |
| 165 | $ git reset --hard HEAD~3 <1> |
| 166 | ------------ |
| 167 | + |
| 168 | <1> The last three commits (HEAD, HEAD^, and HEAD~2) were bad |
| 169 | and you do not want to ever see them again. Do *not* do this if |
| 170 | you have already given these commits to somebody else. (See the |
| 171 | "RECOVERING FROM UPSTREAM REBASE" section in linkgit:git-rebase[1] for |
| 172 | the implications of doing so.) |
| 173 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 174 | Undo a merge or pull:: |
| 175 | + |
| 176 | ------------ |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 177 | $ git pull <1> |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 178 | Auto-merging nitfol |
| 179 | CONFLICT (content): Merge conflict in nitfol |
Junio C Hamano | 6a3c827 | 2008-12-19 21:38:18 | [diff] [blame] | 180 | Automatic merge failed; fix conflicts and then commit the result. |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 181 | $ git reset --hard <2> |
| 182 | $ git pull . topic/branch <3> |
| 183 | Updating from 41223... to 13134... |
Junio C Hamano | 3f680f3 | 2009-11-16 02:10:54 | [diff] [blame] | 184 | Fast-forward |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 185 | $ git reset --hard ORIG_HEAD <4> |
| 186 | ------------ |
| 187 | + |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 188 | <1> Try to update from the upstream resulted in a lot of |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 189 | conflicts; you were not ready to spend a lot of time merging |
| 190 | right now, so you decide to do that later. |
| 191 | <2> "pull" has not made merge commit, so "git reset --hard" |
| 192 | which is a synonym for "git reset --hard HEAD" clears the mess |
| 193 | from the index file and the working tree. |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 194 | <3> Merge a topic branch into the current branch, which resulted |
Junio C Hamano | 3f680f3 | 2009-11-16 02:10:54 | [diff] [blame] | 195 | in a fast-forward. |
Junio C Hamano | 092f5f0 | 2007-08-02 07:23:38 | [diff] [blame] | 196 | <4> But you decided that the topic branch is not ready for public |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 197 | consumption yet. "pull" or "merge" always leaves the original |
| 198 | tip of the current branch in ORIG_HEAD, so resetting hard to it |
| 199 | brings your index file and the working tree back to that state, |
| 200 | and resets the tip of the branch to that commit. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 201 | |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 202 | Undo a merge or pull inside a dirty working tree:: |
Junio C Hamano | bbbb865 | 2008-12-29 10:34:22 | [diff] [blame] | 203 | + |
| 204 | ------------ |
| 205 | $ git pull <1> |
| 206 | Auto-merging nitfol |
| 207 | Merge made by recursive. |
| 208 | nitfol | 20 +++++---- |
| 209 | ... |
| 210 | $ git reset --merge ORIG_HEAD <2> |
| 211 | ------------ |
| 212 | + |
| 213 | <1> Even if you may have local modifications in your |
| 214 | working tree, you can safely say "git pull" when you know |
| 215 | that the change in the other branch does not overlap with |
| 216 | them. |
| 217 | <2> After inspecting the result of the merge, you may find |
| 218 | that the change in the other branch is unsatisfactory. Running |
| 219 | "git reset --hard ORIG_HEAD" will let you go back to where you |
| 220 | were, but it will discard your local changes, which you do not |
| 221 | want. "git reset --merge" keeps your local changes. |
| 222 | |
| 223 | |
Junio C Hamano | 74e8a2d | 2006-01-14 03:58:41 | [diff] [blame] | 224 | Interrupted workflow:: |
| 225 | + |
Junio C Hamano | a6331a8 | 2006-01-22 07:50:33 | [diff] [blame] | 226 | Suppose you are interrupted by an urgent fix request while you |
| 227 | are in the middle of a large change. The files in your |
Junio C Hamano | 74e8a2d | 2006-01-14 03:58:41 | [diff] [blame] | 228 | working tree are not in any shape to be committed yet, but you |
| 229 | need to get to the other branch for a quick bugfix. |
| 230 | + |
| 231 | ------------ |
| 232 | $ git checkout feature ;# you were working in "feature" branch and |
| 233 | $ work work work ;# got interrupted |
Junio C Hamano | 7ae0ab2 | 2007-11-03 02:46:46 | [diff] [blame] | 234 | $ git commit -a -m "snapshot WIP" <1> |
Junio C Hamano | 74e8a2d | 2006-01-14 03:58:41 | [diff] [blame] | 235 | $ git checkout master |
| 236 | $ fix fix fix |
| 237 | $ git commit ;# commit with real log |
| 238 | $ git checkout feature |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 239 | $ git reset --soft HEAD^ ;# go back to WIP state <2> |
| 240 | $ git reset <3> |
| 241 | ------------ |
| 242 | + |
Junio C Hamano | 74e8a2d | 2006-01-14 03:58:41 | [diff] [blame] | 243 | <1> This commit will get blown away so a throw-away log message is OK. |
Junio C Hamano | a6331a8 | 2006-01-22 07:50:33 | [diff] [blame] | 244 | <2> This removes the 'WIP' commit from the commit history, and sets |
| 245 | your working tree to the state just before you made that snapshot. |
Junio C Hamano | c8d88c2 | 2006-04-29 07:02:01 | [diff] [blame] | 246 | <3> At this point the index file still has all the WIP changes you |
| 247 | committed as 'snapshot WIP'. This updates the index to show your |
| 248 | WIP files as uncommitted. |
Junio C Hamano | 116db35 | 2008-12-17 19:48:40 | [diff] [blame] | 249 | + |
| 250 | See also linkgit:git-stash[1]. |
Junio C Hamano | 74e8a2d | 2006-01-14 03:58:41 | [diff] [blame] | 251 | |
Junio C Hamano | 26e590a | 2008-02-17 03:53:51 | [diff] [blame] | 252 | Reset a single file in the index:: |
| 253 | + |
| 254 | Suppose you have added a file to your index, but later decide you do not |
| 255 | want to add it to your commit. You can remove the file from the index |
| 256 | while keeping your changes with git reset. |
| 257 | + |
| 258 | ------------ |
| 259 | $ git reset -- frotz.c <1> |
| 260 | $ git commit -m "Commit files in index" <2> |
| 261 | $ git add frotz.c <3> |
| 262 | ------------ |
| 263 | + |
| 264 | <1> This removes the file from the index while keeping it in the working |
| 265 | directory. |
| 266 | <2> This commits all other changes in the index. |
| 267 | <3> Adds the file to the index again. |
| 268 | |
Junio C Hamano | 0299d92 | 2010-03-20 20:59:31 | [diff] [blame] | 269 | Keep changes in working tree while discarding some previous commits:: |
| 270 | + |
| 271 | Suppose you are working on something and you commit it, and then you |
| 272 | continue working a bit more, but now you think that what you have in |
| 273 | your working tree should be in another branch that has nothing to do |
Junio C Hamano | 619596a | 2010-08-18 22:15:35 | [diff] [blame] | 274 | with what you committed previously. You can start a new branch and |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 275 | reset it while keeping the changes in your working tree. |
Junio C Hamano | 0299d92 | 2010-03-20 20:59:31 | [diff] [blame] | 276 | + |
| 277 | ------------ |
| 278 | $ git tag start |
| 279 | $ git checkout -b branch1 |
| 280 | $ edit |
| 281 | $ git commit ... <1> |
| 282 | $ edit |
| 283 | $ git checkout -b branch2 <2> |
| 284 | $ git reset --keep start <3> |
| 285 | ------------ |
| 286 | + |
| 287 | <1> This commits your first edits in branch1. |
| 288 | <2> In the ideal world, you could have realized that the earlier |
| 289 | commit did not belong to the new topic when you created and switched |
| 290 | to branch2 (i.e. "git checkout -b branch2 start"), but nobody is |
| 291 | perfect. |
| 292 | <3> But you can use "reset --keep" to remove the unwanted commit after |
| 293 | you switched to "branch2". |
| 294 | |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 295 | |
| 296 | DISCUSSION |
| 297 | ---------- |
| 298 | |
| 299 | The tables below show what happens when running: |
| 300 | |
| 301 | ---------- |
| 302 | git reset --option target |
| 303 | ---------- |
| 304 | |
| 305 | to reset the HEAD to another commit (`target`) with the different |
| 306 | reset options depending on the state of the files. |
| 307 | |
| 308 | In these tables, A, B, C and D are some different states of a |
| 309 | file. For example, the first line of the first table means that if a |
| 310 | file is in state A in the working tree, in state B in the index, in |
| 311 | state C in HEAD and in state D in the target, then "git reset --soft |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 312 | target" will leave the file in the working tree in state A and in the |
| 313 | index in state B. It resets (i.e. moves) the HEAD (i.e. the tip of |
| 314 | the current branch, if you are on one) to "target" (which has the file |
| 315 | in state D). |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 316 | |
| 317 | working index HEAD target working index HEAD |
| 318 | ---------------------------------------------------- |
| 319 | A B C D --soft A B D |
| 320 | --mixed A D D |
| 321 | --hard D D D |
| 322 | --merge (disallowed) |
| 323 | --keep (disallowed) |
| 324 | |
| 325 | working index HEAD target working index HEAD |
| 326 | ---------------------------------------------------- |
| 327 | A B C C --soft A B C |
| 328 | --mixed A C C |
| 329 | --hard C C C |
| 330 | --merge (disallowed) |
| 331 | --keep A C C |
| 332 | |
| 333 | working index HEAD target working index HEAD |
| 334 | ---------------------------------------------------- |
| 335 | B B C D --soft B B D |
| 336 | --mixed B D D |
| 337 | --hard D D D |
| 338 | --merge D D D |
| 339 | --keep (disallowed) |
| 340 | |
| 341 | working index HEAD target working index HEAD |
| 342 | ---------------------------------------------------- |
| 343 | B B C C --soft B B C |
| 344 | --mixed B C C |
| 345 | --hard C C C |
| 346 | --merge C C C |
| 347 | --keep B C C |
| 348 | |
| 349 | working index HEAD target working index HEAD |
| 350 | ---------------------------------------------------- |
| 351 | B C C D --soft B C D |
| 352 | --mixed B D D |
| 353 | --hard D D D |
| 354 | --merge (disallowed) |
| 355 | --keep (disallowed) |
| 356 | |
| 357 | working index HEAD target working index HEAD |
| 358 | ---------------------------------------------------- |
| 359 | B C C C --soft B C C |
| 360 | --mixed B C C |
| 361 | --hard C C C |
| 362 | --merge B C C |
| 363 | --keep B C C |
| 364 | |
| 365 | "reset --merge" is meant to be used when resetting out of a conflicted |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 366 | merge. Any mergy operation guarantees that the working tree file that is |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 367 | involved in the merge does not have local change wrt the index before |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 368 | it starts, and that it writes the result out to the working tree. So if |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 369 | we see some difference between the index and the target and also |
Junio C Hamano | 657fd8a | 2010-10-07 00:01:24 | [diff] [blame] | 370 | between the index and the working tree, then it means that we are not |
Junio C Hamano | b5a296f | 2010-08-13 02:46:36 | [diff] [blame] | 371 | resetting out from a state that a mergy operation left after failing |
| 372 | with a conflict. That is why we disallow --merge option in this case. |
| 373 | |
| 374 | "reset --keep" is meant to be used when removing some of the last |
| 375 | commits in the current branch while keeping changes in the working |
| 376 | tree. If there could be conflicts between the changes in the commit we |
| 377 | want to remove and the changes in the working tree we want to keep, |
| 378 | the reset is disallowed. That's why it is disallowed if there are both |
| 379 | changes between the working tree and HEAD, and between HEAD and the |
| 380 | target. To be safe, it is also disallowed when there are unmerged |
| 381 | entries. |
| 382 | |
| 383 | The following tables show what happens when there are unmerged |
| 384 | entries: |
| 385 | |
| 386 | working index HEAD target working index HEAD |
| 387 | ---------------------------------------------------- |
| 388 | X U A B --soft (disallowed) |
| 389 | --mixed X B B |
| 390 | --hard B B B |
| 391 | --merge B B B |
| 392 | --keep (disallowed) |
| 393 | |
| 394 | working index HEAD target working index HEAD |
| 395 | ---------------------------------------------------- |
| 396 | X U A A --soft (disallowed) |
| 397 | --mixed X A A |
| 398 | --hard A A A |
| 399 | --merge A A A |
| 400 | --keep (disallowed) |
| 401 | |
| 402 | X means any state and U means an unmerged index. |
| 403 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 404 | GIT |
| 405 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 406 | Part of the linkgit:git[1] suite |