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>] [--keep-non-patch]
11

DESCRIPTION

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

OPTIONS

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

GIT

52       Part of the git(1) suite
53
54
55
56Git 2.26.2                        2020-04-20                GIT-QUILTIMPORT(1)
Impressum