blob: 579e8d2f3ba54e393a60a8b4d8a4ad6a95cb79f1 [file] [log] [blame]
Junio C Hamano9bf8a512006-05-20 02:24:441git-quiltimport(1)
2================
3
4NAME
5----
6git-quiltimport - Applies a quilt patchset onto the current branch
7
8
9SYNOPSIS
10--------
11[verse]
Junio C Hamano7df6dcf2009-09-13 09:51:1712'git quiltimport' [--dry-run | -n] [--author <author>] [--patches <dir>]
Junio C Hamano9bf8a512006-05-20 02:24:4413
14
15DESCRIPTION
16-----------
17Applies a quilt patchset onto the current git branch, preserving
18the patch boundaries, patch order, and patch descriptions present
19in the quilt patchset.
20
21For each patch the code attempts to extract the author from the
22patch description. If that fails it falls back to the author
23specified with --author. If the --author flag was not given
24the patch description is displayed and the user is asked to
25interactively enter the author of the patch.
26
27If a subject is not found in the patch description the patch name is
28preserved as the 1 line subject in the git description.
29
30OPTIONS
31-------
Junio C Hamanoeb415992008-06-08 22:49:4732
33-n::
Junio C Hamano9bf8a512006-05-20 02:24:4434--dry-run::
35Walk through the patches in the series and warn
36if we cannot find all of the necessary information to commit
37a patch. At the time of this writing only missing author
38information is warned about.
39
40--author Author Name <Author Email>::
41The author name and email address to use when no author
42information can be found in the patch description.
43
44--patches <dir>::
45The directory to find the quilt patches and the
46quilt series file.
Junio C Hamanoa3fd83c2007-03-02 10:34:3647+
48The default for the patch directory is patches
49or the value of the $QUILT_PATCHES environment
50variable.
Junio C Hamano9bf8a512006-05-20 02:24:4451
52Author
53------
54Written by Eric Biederman <ebiederm@lnxi.com>
55
56Documentation
57--------------
58Documentation by Eric Biederman <ebiederm@lnxi.com>
59
60GIT
61---
Junio C Hamanof7c042d2008-06-06 22:50:5362Part of the linkgit:git[1] suite