Answers for "how to cherry pick 2 or more commits"

0

git cherry pick multiple commits

To cherry-pick all the commits from commit A to commit B (where A is older than B), run:
git cherry-pick A^..B

If you want to ignore A itself, run:
git cherry-pick A..B
Posted by: Guest on February-15-2021

Code answers related to "how to cherry pick 2 or more commits"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language