On Tue, Sep 08, 2020 at 08:28:16AM -0700, Mike Travis wrote: > I didn't. If I could figure out how to convert quilt patches into git > commits I might be able to do that? (And I didn't know that diffstats were > needed on the into?) $ git quiltimport Or, for the more enterprising person: $ quilt series | while read file; do git am $file; done Generating a diffstat from a quilt series (when applied): $ quilt diff --combine - | diffstat