Autogenerated manpages for v2.42.0-176-gd6c51
[git-manpages.git] / man1 / git-quiltimport.1
blob2b456c1e78f2dbfbec51bcd1fe6ded19b3c82a6f
1 '\" t
2 .\"     Title: git-quiltimport
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-09-13
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.42.0.176.gd6c51973e4
8 .\"  Language: English
9 .\"
10 .TH "GIT\-QUILTIMPORT" "1" "2023\-09\-13" "Git 2\&.42\&.0\&.176\&.gd6c519" "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 .sp
39 .SH "DESCRIPTION"
40 .sp
41 Applies a quilt patchset onto the current Git branch, preserving the patch boundaries, patch order, and patch descriptions present in the quilt patchset\&.
42 .sp
43 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\&.
44 .sp
45 If a subject is not found in the patch description the patch name is preserved as the 1 line subject in the Git description\&.
46 .SH "OPTIONS"
47 .PP
48 \-n, \-\-dry\-run
49 .RS 4
50 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\&.
51 .RE
52 .PP
53 \-\-author Author Name <Author Email>
54 .RS 4
55 The author name and email address to use when no author information can be found in the patch description\&.
56 .RE
57 .PP
58 \-\-patches <dir>
59 .RS 4
60 The directory to find the quilt patches\&.
61 .sp
62 The default for the patch directory is patches or the value of the
63 \fB$QUILT_PATCHES\fR
64 environment variable\&.
65 .RE
66 .PP
67 \-\-series <file>
68 .RS 4
69 The quilt series file\&.
70 .sp
71 The default for the series file is <patches>/series or the value of the
72 \fB$QUILT_SERIES\fR
73 environment variable\&.
74 .RE
75 .PP
76 \-\-keep\-non\-patch
77 .RS 4
78 Pass
79 \fB\-b\fR
80 flag to
81 \fIgit mailinfo\fR
82 (see
83 \fBgit-mailinfo\fR(1))\&.
84 .RE
85 .SH "GIT"
86 .sp
87 Part of the \fBgit\fR(1) suite