Skip to content
Snippets Groups Projects
Forked from R3 / school / courses
732 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
chPickIntro.md 437 B

Cherry picking commits

Cherry picking is another very useful tool to work with.
It enables the user to pick specific commits from a
list of commits to select which changes are needed and
which ones aren't.

Note: Cherry picking only picks the selected commit,
not everything up to that commit. If a commit is dependant
on other changes introduced before, these changes have to be
cherry picked as well to avoid conflicts.