This is my pseudo-tree:
A
I started an interactive reboot from the root: git rebase --root -i
and set the command edit
for all commits. Here is an example:
e b83fa60 Initial content (A)
e 9a82ddf Update license information (B)
e fa8cb80 Rewrite readme (C)
e 0525f07 Update email address (D)
Now I settled on B during rebase:
A
^
At this point, I want to “merge” or “squash” B with the next C-commit. How can i do this?
source
share