0 votes
in Git by
What is git cherry-pick?

1 Answer

0 votes
by
The command git cherry-pick is normally used to introduce particular commits from one branch within a repository onto a different branch. Another common use is to forward- or back-port commits from a maintenance branch to a development branch. This is in contrast with other ways such as merge and rebase which normally apply many commits onto another branch.

Consider:

git cherry-pick <commit-hash>

Related questions

0 votes
asked Aug 22, 2023 in GitHub by JackTerrance
0 votes
asked Aug 24, 2023 in Git by JackTerrance
...