Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #multiple #commits
ADD COMMENT
Topic
Name
7+4 =