Table of Contents JavaScript must be enabled in your browser to display the table of contents. 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. This tutorial assumes you are already familiar with the basics of Git (for example, branches, commits, and conflicts). For more information on Git, see git(1) or the Git home page . For a full list of StGit commands: $ stg help For quick help on individual subcommands: $ stg help <cmd> For more extensive help on a subcommand: $ man stg-<cmd> (The documentation is also available in HTML format .) StGit is not a stand-alone program — it operate...