Ralf Wildenhues <Ralf.Wildenhues@xxxxxx> writes: > Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@xxxxxx> > --- > > This patch is against pu. While I appreciate your fix, it would have been nicer to have at least three patches in this case, organized like this: * patch 1 applies to 'maint'. Let's call the result of such application 'maint plus fix'; In other words: $ git checkout -b rw/maint-typofix maint $ git am -s patch-1 * patch 2 is to be applied on top of the result of merging 'maint plus fix' into 'master'; In other words: $ git checkout -b rw/typofix master $ git merge rw/maint-typofix $ git am -s patch-2 * patch 3 is to contain everything else (it would be even nicer if they are split up to apply to individual topic branches that are responsible for introducing the typos, but I realize that it would be asking too much). In other words: $ git checkout pu $ git merge rw/typofix $ git am -s patch-3 I've done the above splitting myself and further did: $ git checkout maint $ git merge rw/maint-typofix $ git branch -d rw/maint-typofix $ git checkout master $ git merge rw/typofix $ git branch -d rw/typofix I did not create a single "patch-3" but squashed the fixes in to the respective commits on the topic branches, as they are only on 'pu' and not part of 'next' (hence I am free to amend and rebase them). Thanks. -- 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