Copying a range of commits from one branch to another

suggest change

git cherry-pick <commit-A>..<commit-B> will place every commit after A and up to and including B on top of the currently checked-out branch.

git cherry-pick <commit-A>^..<commit-B> will place commit A and every commit up to and including B on top of the currently checked-out branch.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents