Let's say I have the following commits
F
E
D
C
B
A
And I wished to remove commit C from the stack but keep the rest as is, i.e. like so
F
E
D
B
A
Is that possible? I know of git reset, but that resets the whole stack to a point, i.e. it gets rid of anything after that commit too.
F
E
D
C
B
A
And I wished to remove commit C from the stack but keep the rest as is, i.e. like so
F
E
D
B
A
Is that possible? I know of git reset, but that resets the whole stack to a point, i.e. it gets rid of anything after that commit too.