Giuseppe Bilotta wrote: > For what it's worth, somebody on #git just asked how to signoff a > bunch of patches. The answer was to rebase -i and sign off each one of > them. How I would do it in existing git: git branch oldhead git reset --keep base git log --oneline --graph HEAD..oldhead; # the right patches? git cherry-pick -s HEAD..oldhead git diff oldhead Or without multiple-cherry-pick, maybe: git branch oldhead git reset --keep base git format-patch -k --stdout HEAD..oldhead >series git am -s -3 -i series; # the right patches? git diff oldhead No opinion on the automatic-signoff-in-rebase here. -- 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