diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
| commit | 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch) | |
| tree | f1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/git/git-quiltimport.html | |
new repository
Diffstat (limited to 'devdocs/git/git-quiltimport.html')
| -rw-r--r-- | devdocs/git/git-quiltimport.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/devdocs/git/git-quiltimport.html b/devdocs/git/git-quiltimport.html new file mode 100644 index 00000000..4317f3f3 --- /dev/null +++ b/devdocs/git/git-quiltimport.html @@ -0,0 +1,7 @@ +<h1>git-quiltimport</h1> <h2 id="_name">Name</h2> <div class="sectionbody"> <p>git-quiltimport - Applies a quilt patchset onto the current branch</p> </div> <h2 id="_synopsis">Synopsis</h2> <div class="sectionbody"> <div class="verseblock"> <pre class="content" data-language="shell">git quiltimport [--dry-run | -n] [--author <author>] [--patches <dir>] + [--series <file>] [--keep-non-patch]</pre> </div> </div> <h2 id="_description">Description</h2> <div class="sectionbody"> <p>Applies a quilt patchset onto the current Git branch, preserving the patch boundaries, patch order, and patch descriptions present in the quilt patchset.</p> <p>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.</p> <p>If a subject is not found in the patch description the patch name is preserved as the 1 line subject in the Git description.</p> </div> <h2 id="_options">Options</h2> <div class="sectionbody"> <div class="dlist"> <dl> <dt class="hdlist1" id="Documentation/git-quiltimport.txt--n"> -n </dt> <dt class="hdlist1" id="Documentation/git-quiltimport.txt---dry-run"> --dry-run </dt> <dd> <p>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.</p> </dd> <dt class="hdlist1" id="Documentation/git-quiltimport.txt---authoremAuthorNameltAuthorEmailgtem"> --author <em>Author Name <Author Email></em> </dt> <dd> <p>The author name and email address to use when no author information can be found in the patch description.</p> </dd> <dt class="hdlist1" id="Documentation/git-quiltimport.txt---patchesltdirgt"> --patches <dir> </dt> <dd> <p>The directory to find the quilt patches.</p> <p>The default for the patch directory is <code>patches</code> or the value of the <code>$QUILT_PATCHES</code> environment variable.</p> </dd> <dt class="hdlist1" id="Documentation/git-quiltimport.txt---seriesltfilegt"> --series <file> </dt> <dd> <p>The quilt series file.</p> <p>The default for the series file is <patches>/series or the value of the <code>$QUILT_SERIES</code> environment variable.</p> </dd> <dt class="hdlist1" id="Documentation/git-quiltimport.txt---keep-non-patch"> --keep-non-patch </dt> <dd> <p>Pass <code>-b</code> flag to <code>git mailinfo</code> (see <a href="git-mailinfo">git-mailinfo[1]</a>).</p> </dd> </dl> </div> </div><div class="_attribution"> + <p class="_attribution-p"> + © 2012–2024 Scott Chacon and others<br>Licensed under the MIT License.<br> + <a href="https://git-scm.com/docs/git-quiltimport" class="_attribution-link">https://git-scm.com/docs/git-quiltimport</a> + </p> +</div> |
