1GIT-QUILTIMPORT(1)                Git Manual                GIT-QUILTIMPORT(1)
2
3
4

NAME

6       git-quiltimport - Applies a quilt patchset onto the current branch
7

SYNOPSIS

9       git quiltimport [--dry-run | -n] [--author <author>] [--patches <dir>]
10                       [--series <file>]
11
12

DESCRIPTION

14       Applies a quilt patchset onto the current Git branch, preserving the
15       patch boundaries, patch order, and patch descriptions present in the
16       quilt patchset.
17
18       For each patch the code attempts to extract the author from the patch
19       description. If that fails it falls back to the author specified with
20       --author. If the --author flag was not given the patch description is
21       displayed and the user is asked to interactively enter the author of
22       the patch.
23
24       If a subject is not found in the patch description the patch name is
25       preserved as the 1 line subject in the Git description.
26

OPTIONS

28       -n, --dry-run
29           Walk through the patches in the series and warn if we cannot find
30           all of the necessary information to commit a patch. At the time of
31           this writing only missing author information is warned about.
32
33       --author Author Name <Author Email>
34           The author name and email address to use when no author information
35           can be found in the patch description.
36
37       --patches <dir>
38           The directory to find the quilt patches.
39
40           The default for the patch directory is patches or the value of the
41           $QUILT_PATCHES environment variable.
42
43       --series <file>
44           The quilt series file.
45
46           The default for the series file is <patches>/series or the value of
47           the $QUILT_SERIES environment variable.
48

GIT

50       Part of the git(1) suite
51
52
53
54Git 2.18.1                        05/14/2019                GIT-QUILTIMPORT(1)
Impressum