1GIT-QUILTIMPORT(1) Git Manual GIT-QUILTIMPORT(1)
2
3
4
6 git-quiltimport - Applies a quilt patchset onto the current branch
7
9 git-quiltimport [--dry-run] [--author <author>] [--patches <dir>]
10
12 Applies a quilt patchset onto the current git branch, preserving the
13 patch boundaries, patch order, and patch descriptions present in the
14 quilt patchset.
15
16 For each patch the code attempts to extract the author from the patch
17 description. If that fails it falls back to the author specified with
18 --author. If the --author flag was not given the patch description is
19 displayed and the user is asked to interactively enter the author of
20 the patch.
21
22 If a subject is not found in the patch description the patch name is
23 preserved as the 1 line subject in the git description.
24
26 --dry-run
27 Walk through the patches in the series and warn if we cannot find
28 all of the necessary information to commit a patch. At the time of
29 this writing only missing author information is warned about.
30
31 --author Author Name <Author Email>
32 The author name and email address to use when no author information
33 can be found in the patch description.
34
35 --patches <dir>
36 The directory to find the quilt patches and the quilt series file.
37
38 The default for the patch directory is patches or the value of the
39 $QUILT_PATCHES environment variable.
40
42 Written by Eric Biederman <ebiederm@lnxi.com>
43
45 Documentation by Eric Biederman <ebiederm@lnxi.com>
46
48 Part of the git(7) suite
49
50
51
52
53Git 1.5.3.3 10/09/2007 GIT-QUILTIMPORT(1)