On Mon, Feb 06, 2017 at 12:23:23AM -0500, Troy Sankey wrote: > I wonder how I should send these patches after I'm all done. git > send-email? That seems crazy. Dozens of patches in their own messages is a little hard to work with as a reviewer. But, you can put them all in one patch file that is trivial to apply to my Git tree: $ git format-patch your-branch..master --stdout > patch-series.patch And on my end: $ git am patch-series.patch