You have a commit which contains a good code change but it is in another branch? ```bash # pick the commit git cherry-pick # apply changes introduced by commit but do not commit the changes git cherry-pick -n git cherry-pick --no-commit # pick all the commits from A to B git cherry-pick A^..B ```