I've got two branches. Lets call them A & B for now. I want to selectively copy something like 20 commits from A to B. Is there any efficient way to do this?
I know I can git cherry-pick commits one at a time but can I do 20 all at once? This is assuming the 20 commits aren't together and there are commits in between them that I do not want copied over.
Example. Branch A commits
4->5->6->7
Branch B
1->2->3->8
I want to copy 4,5,7 over to B.