This is my graph:
Branch A a-->b
|
v
Branch B b-->c
I have branch B
that came out of branch A
, from commit b
.
I did a commit on branch B
called c
.
Now let's say I update commit b
of branch A
with git commit --amend
to b'
Branch A a-->b'
|
v
Branch B b-->c
How do I update comit b
on branch B
to be the exact b'
?
Thanks