LinuxCommandLibrary

git-quiltimport

Import quilt patches to commits

TLDR

Import quilt patches

$ git quiltimport
copy
Import from specific directory
$ git quiltimport --patches [patches/]
copy
Dry run
$ git quiltimport -n
copy

SYNOPSIS

git quiltimport [options]

DESCRIPTION

git quiltimport imports a quilt patchset into Git as a series of commits. Quilt is a patch management system, and this command reads the patches directory and series file, creating one commit per patch in order.
The command enables migration from quilt-based development workflows to Git, which was particularly common in Linux distribution packaging before Git became the standard.

PARAMETERS

--patches DIR

Patches directory.
--series FILE
Series file location.
-n, --dry-run
Show what would be imported.
--author AUTHOR
Default author.
--help
Display help information.

CAVEATS

Requires properly formatted quilt patches. Author info may need specification. One-way import.

HISTORY

git quiltimport supports migration from quilt, a popular patch management tool used before git became widespread, particularly in Linux distribution development.

SEE ALSO

git-am(1), quilt(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community