Suppose you git history looks like this:
1 2 3 4 5
Where 1-5 are separate revisions. You need to remove 3 while still keeping 1, 2, 4 and 5. How to do it?
Is there an efficient method when there are hundreds of revisions after the one to be deleted?
|
Suppose you git history looks like this: 1 2 3 4 5 Where 1-5 are separate revisions. You need to remove 3 while still keeping 1, 2, 4 and 5. How to do it? Is there an efficient method when there are hundreds of revisions after the one to be deleted? |
|||||
|
|
To combine revision 3 and 4 into a single revision, you can use git rebase. If you want to remove the changes in revision 3, you need to use the edit command in the interactive rebase mode. If you want to combine the changes into a single revision, use squash. I have successfully used this squash technique, but have never needed to remove a revision before. The git-rebase documentation under "Splitting commits" should hopefully give you enough of an idea to figure it out. (Or someone else might know). From the git documentation:
|
|||||||
|
|
As noted before git-rebase(1) is your friend. Assuming the commits are in your
Before:
After:
From git-rebase(1):
|
|||||||||||||
|
|
Here is a way to remove non-interactively a specific
|
|||||||||
|
|
If all you want to do is remove the changes made in revision 3, you might want to use git revert. Git revert simply creates a new revision with changes that undo all of the changes in the revision you are reverting. What this means, is that you retain information about both the unwanted commit, and the commit that removes those changes. This is probably a lot more friendly if it's at all possible the someone has pulled from your repository in the mean time, since the revert is basically just a standard commit. |
|||
|
|
|
Per this comment (and I checked that this is true), rado's answer is very close but leaves git in a detached head state. Instead, remove
|
|||
|
|
|
All the answers so far don't address the trailing concern:
The steps follow, but for reference, let's assume the following history:
C: commit just following the commit to be removed (clean) R: The commit to be removed B: commit just preceding the commit to be removed (base) Because of the "hundreds of revisions" constraint, I'm assuming the following pre-conditions:
This is a pretty restrictive set of constraints, but there is an interesting answer that actually works in this corner case. Here are the steps:
If there are truly no conflicts, then this should proceed with no further interruptions. If there are conflicts, you can resolve them and Now you should be on How you want to arrange everyone else's transfer over to your new history is up to you. You will need to be acquainted with |
||||
|
|