I merged a branch, and not all commits had been pushed. How to add the remaining commits?

Viewed 23

I had a branch. Say there were commits

A -- B -- C -- D

I pushed it. Then I added more: A -- B -- C -- D -- E -- F

I merged.

How do I add E and F?

1 Answers

push the remaining commits(E & F) & merge it again

Related