StGit is a command-line application that provides functionality similar to Quilt (i.e., pushing/popping patches to/from a stack), but using Git instead of diff and patch. StGit stores its patches in a Git repository as normal Git commits, and provides a number of commands to manipulate them in various ways.
StGit uses a patch stack workflow. Each individual patch focuses on a single concern, while a stack of patches forms a series of commits. Patches are stored as normal git commits, allowing easy merging of StGit patches into other repositories using standard Git.
Features include:
Import and export patches from Git with
stg commitandstg uncommitCreate new patches and add them to the stack with
stg newUpdate a patch from the working tree with
stg refreshandstg editSee information about the stack or patch with
stg seriesandstg showExport and send a series of patches by email using
stg email