Answers for "git cherry pick many commits"

1

git cherry pick many commits

# A and B are commits
# A is older than B

git cherry-pick A^..B

# to ignore A itself, run:

git cherry-pick A..B
Posted by: Guest on October-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language