Suppose that I have in master this log :
- commit 6 (head)
- commit 5
- commit 4
- commit 3
- commit 2
- commit 1
And I want to undo commit 3 so that I will have this log :
- commit 6 (head)
- commit 5
- commit 4
- commit 2
- commit 1
If I do this with revert commit 3, I only have this in log :
- commit 3 (head)
- commit 2
- commit 1
And it's not what I want.
Is there any solution for this issue please ?