Rebasing specific part of git history

66 Views Asked by At

Is it possible (with a rebase I guess) to get this

<lots of commit above>
* 54dda... commit d 
* 78adf... commit c
* 65d3aa0 .. branch commit 3
* 404b9cf .. branch commit 2
* 77e8a38 .. branch commit 1
* e239d7... commit b
* 78azee... commit a
<lots of commit below>

from this

<lots of commit above>
* 54dda... commit d 
* 78adf... commit c
|\
| * 65d3aa0 .. branch commit 3
| * 404b9cf .. branch commit 2
| * 77e8a38 .. branch commit 1
|/
* e239d7... commit b
* 78azee... commit a
<lots of commit below>
1

There are 1 best solutions below

0
On

Something like this:

git checkout 78adf
git reset --soft 65d3aa0
git commit -m 'commit C'
# same content as 78adf, but it's not a merge anymore.... auhor/committet are you (dates adjusted as well)
# then replay whatever was on top of it
git cherry-pick 78adf..whatever-branch
# if you like the result, set a branch over here
git checkout -b some-branch