Autogenerated manpages for v2.47.0-rc1-33-g90fe38
[git-manpages.git] / man1 / git-quiltimport.1
blob50179e86d2fd07a876e54ffb7863b3ee219f7033
1 '\" t
2 .\"     Title: git-quiltimport
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-10-04
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc1.33.g90fe3800b9
8 .\"  Language: English
9 .\"
10 .TH "GIT\-QUILTIMPORT" "1" "2024-10-04" "Git 2\&.47\&.0\&.rc1\&.33\&.g9" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-quiltimport \- Applies a quilt patchset onto the current branch
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit quiltimport\fR [\-\-dry\-run | \-n] [\-\-author <author>] [\-\-patches <dir>]
36                 [\-\-series <file>] [\-\-keep\-non\-patch]
37 .fi
38 .SH "DESCRIPTION"
39 .sp
40 Applies a quilt patchset onto the current Git branch, preserving the patch boundaries, patch order, and patch descriptions present in the quilt patchset\&.
41 .sp
42 For each patch the code attempts to extract the author from the patch description\&. If that fails it falls back to the author specified with \-\-author\&. If the \-\-author flag was not given the patch description is displayed and the user is asked to interactively enter the author of the patch\&.
43 .sp
44 If a subject is not found in the patch description the patch name is preserved as the 1 line subject in the Git description\&.
45 .SH "OPTIONS"
46 .PP
47 \-n, \-\-dry\-run
48 .RS 4
49 Walk through the patches in the series and warn if we cannot find all of the necessary information to commit a patch\&. At the time of this writing only missing author information is warned about\&.
50 .RE
51 .PP
52 \-\-author \fIAuthor Name <Author Email>\fR
53 .RS 4
54 The author name and email address to use when no author information can be found in the patch description\&.
55 .RE
56 .PP
57 \-\-patches <dir>
58 .RS 4
59 The directory to find the quilt patches\&.
60 .sp
61 The default for the patch directory is
62 \fIpatches\fR
63 or the value of the
64 \fB$QUILT_PATCHES\fR
65 environment variable\&.
66 .RE
67 .PP
68 \-\-series <file>
69 .RS 4
70 The quilt series file\&.
71 .sp
72 The default for the series file is <patches>/series or the value of the
73 \fB$QUILT_SERIES\fR
74 environment variable\&.
75 .RE
76 .PP
77 \-\-keep\-non\-patch
78 .RS 4
79 Pass
80 \fB\-b\fR
81 flag to
82 \fIgit mailinfo\fR
83 (see
84 \fBgit-mailinfo\fR(1))\&.
85 .RE
86 .SH "GIT"
87 .sp
88 Part of the \fBgit\fR(1) suite