Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git cherry pick chain

git cherry-pick A..B (Not includes A)
git cherry-pick A^..B (Includes A)

In the "cherry-pick A..B" form, A should be older than B.
If you want to pick the range B through D (including B) that would be B^..D (instead of B..D).
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #git #cherry #pick #chain
ADD COMMENT
Topic
Name
3+8 =