git-cherry-pick is great command. It allows you to take a single commit made elsewhere and commit it to your workin g tree. From the man page: Given one existing commit, apply the change the patch introduces, and record a new commit
that records it. This requires your working tree to be clean (no modifications from the
HEAD commit). Today I was ...