D6 - cherry-picking and interactive rebasing
cherry-picking
git cherry-pick <commit1> <commit2> <...>
- it adds the desired commits after the
HEAD
interactive rebase
git rebase -i HEAD~4


git cherry-pick <commit1> <commit2> <...>
HEADgit rebase -i HEAD~4

