With SVN it is easy to reverse-merge a commit, but how to do that with Git?
|
To create a new commit that 'undoes' the changes of a past commit, use:
It's also possible to actually remove a commit from an arbitrary point in the past by rebasing and then resetting, but you really don't want to do that if you have already pushed your commits to another repository (or someone else has pulled from you). |
|||||||||||||
|
|
To revert a merge commit, you need to use: git revert -m . So for example, to revert the recent most merge commit using the parent with number 1 you would use: git merge discussion (confusing but very detailed): http://schacon.github.com/git/howto/revert-a-faulty-merge.txt |
|||||||||||||||
|
|
If I understand you correctly, you're talking about doing a svn merge -rn:n-1 to back out of an earlier commit, in which case, you're probably looking for git-revert. |
|||
|
|