On 8/6/08, Steven Grimm <koreth@xxxxxxxxxxxxx> wrote: > What, if any, is the approved way to get git blame to follow cherry-picked > changes? Right now blame is good about showing you the actual responsible > revision and author in the case of merges, but if you cherry-pick a change > with "-n" (to test before committing), the modifications are attributed to > the person who did the cherry-pick instead of the cherry-picked revision's > author. Even without the "-n" option, the changes are attributed to the > cherry-pick *revision* instead of the original one. It sounds like you at least want to avoid using "-n", if it really does lose author information that way. If the patch doesn't work, you can always "git commit --amend" or "git reset --hard HEAD^". I don't think tracing through to the original revision is useful anyway; nothing you'd find through the original commit would be relevant to git blame, AFAICS, since none of those other patches were applied to the branch you're looking at. Have fun, Avery -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html