Answers for "cherry-pick multiple commits"

1

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 August-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language