On Tue, 23 Jan 2007, Bill Lear wrote: > I have a long-running topic branch. I have fixed a few nits on > the master branch that I would like on the topic branch. How do I > pull in only a few files from the head of the master branch? You don't pull in a few files, you apply the changes made in a few commits: git diff HEX_OF_NIT_FIX^ HEX_OF_NIT_FIX | git apply If there's other stuff in the nit-fixing commit, shame on you, but you can edit the patch before applying it to remove everything that's not what you want. (Incidentally, I think "git diff ^ {commit}" should be made to do "git diff {commit}^ {commit}"; i.e., if there is a single other revision provided, interpret a modifier not applied to anything as applying to that revision, in the "what else could that possibly mean?" department.) -Daniel *This .sig left intentionally blank* - 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