0

I'm debugging at some old git commit level, and I want to add on top of that some specific recent commit, like that:

A->B->C->D->...->E->....->Latest

could be much more than that, this example is only for illustration

I'm now working at "C" and I want to have "E" on top of that, so that I will be at:

A->B->C->E

How can I do it? (pick single commit on top of old commit point)

GM1
  • 380
  • 3
  • 14

1 Answers1

0

As @LeGEC commented: the way is to git cherry-pick E

GM1
  • 380
  • 3
  • 14