I ran into a situation where git cherry-pick X would have some conflicts, but also created extra inserts (when verified with git diff).
I then re-ran git show X > my.patch, and then did patch -p1 < my.patch on my tree.
I got better results, some conflicts, but a much cleaner result.
What does git does special with cherry-picks? I use git 1.7.0.4.
Edited:
By cleaner results, I mean the resulting tree matched a lot more the results of git show X, whereas the git cherry-pick included a lot more code.
git showshows you the diff, while your tree is the full contents. It makes more sense to comparegit show Xandgit show X', whereX'is the cherry-picked version. DoesX'contain much more code in its diff? – Jefromi Mar 2 '11 at 15:34