blob: 1c3ef4c59362a1ccc8e44a54738c788f710201be [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]
12'git-quiltimport' [--dry-run] [--author <author>] [--patches <dir>]
13
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-------
32--dry-run::
33Walk through the patches in the series and warn
34if we cannot find all of the necessary information to commit
35a patch. At the time of this writing only missing author
36information is warned about.
37
38--author Author Name <Author Email>::
39The author name and email address to use when no author
40information can be found in the patch description.
41
42--patches <dir>::
43The directory to find the quilt patches and the
44quilt series file.
Junio C Hamanoa3fd83c2007-03-02 10:34:3645+
46The default for the patch directory is patches
47or the value of the $QUILT_PATCHES environment
48variable.
Junio C Hamano9bf8a512006-05-20 02:24:4449
50Author
51------
52Written by Eric Biederman <ebiederm@lnxi.com>
53
54Documentation
55--------------
56Documentation by Eric Biederman <ebiederm@lnxi.com>
57
58GIT
59---
60Part of the gitlink:git[7] suite