]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-quiltimport.txt
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / Documentation / git-quiltimport.txt
CommitLineData
d3d8f361 1git-quiltimport(1)
c9a5172f 2==================
d3d8f361
EB
3
4NAME
5----
6git-quiltimport - Applies a quilt patchset onto the current branch
7
8
9SYNOPSIS
10--------
11[verse]
1cdd64e8 12'git quiltimport' [--dry-run | -n] [--author <author>] [--patches <dir>]
1eadaa39 13 [--series <file>] [--keep-non-patch]
d3d8f361
EB
14
15
16DESCRIPTION
17-----------
2de9b711 18Applies a quilt patchset onto the current Git branch, preserving
d3d8f361
EB
19the patch boundaries, patch order, and patch descriptions present
20in the quilt patchset.
21
22For each patch the code attempts to extract the author from the
23patch description. If that fails it falls back to the author
24specified with --author. If the --author flag was not given
25the patch description is displayed and the user is asked to
26interactively enter the author of the patch.
27
28If a subject is not found in the patch description the patch name is
2de9b711 29preserved as the 1 line subject in the Git description.
d3d8f361
EB
30
31OPTIONS
32-------
459cf2e9
SB
33
34-n::
d3bd4ee1
EB
35--dry-run::
36 Walk through the patches in the series and warn
37 if we cannot find all of the necessary information to commit
38 a patch. At the time of this writing only missing author
39 information is warned about.
40
d3d8f361
EB
41--author Author Name <Author Email>::
42 The author name and email address to use when no author
43 information can be found in the patch description.
44
45--patches <dir>::
ff60ffdc 46 The directory to find the quilt patches.
d53ebb42
SV
47+
48The default for the patch directory is patches
47d81b5c 49or the value of the `$QUILT_PATCHES` environment
d53ebb42 50variable.
d3d8f361 51
ff60ffdc
JH
52--series <file>::
53 The quilt series file.
54+
55The default for the series file is <patches>/series
47d81b5c 56or the value of the `$QUILT_SERIES` environment
ff60ffdc
JH
57variable.
58
1eadaa39
LA
59--keep-non-patch::
60 Pass `-b` flag to 'git mailinfo' (see linkgit:git-mailinfo[1]).
61
d3d8f361
EB
62GIT
63---
9e1f0a85 64Part of the linkgit:git[1] suite