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 | -n] [--author <author>] [--patches <dir>]
10
11
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
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 and the quilt series file.
38
39 The default for the patch directory is patches or the value of the
40 $QUILT_PATCHES environment variable.
41
43 Written by Eric Biederman <ebiederm@lnxi.com[1]>
44
46 Documentation by Eric Biederman <ebiederm@lnxi.com[1]>
47
49 Part of the git(1) suite
50
52 1. ebiederm@lnxi.com
53 mailto:ebiederm@lnxi.com
54
55
56
57Git 1.7.4.4 04/11/2011 GIT-QUILTIMPORT(1)