Say I have following git history:
commit C # Most recent one
commit B
commit A # First one
And I want to rearrange the C
commit to be the second one making the B
commit the first as follow:
commit B # Being now the latest
commit C # Previously the latest, now second in history
commit A # Still the first
Btw I've found this question to be a possible duplicate, but the question is too complicated for my simple use case as I don't mess commits with branches.