Eric W. Biederman | d3d8f36 | 2006-05-17 12:44:40 -0600 | [diff] [blame] | 1 | git-quiltimport(1) |
| 2 | ================ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-quiltimport - Applies a quilt patchset onto the current branch |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
| 11 | [verse] |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 12 | 'git quiltimport' [--dry-run] [--author <author>] [--patches <dir>] |
Eric W. Biederman | d3d8f36 | 2006-05-17 12:44:40 -0600 | [diff] [blame] | 13 | |
| 14 | |
| 15 | DESCRIPTION |
| 16 | ----------- |
| 17 | Applies a quilt patchset onto the current git branch, preserving |
| 18 | the patch boundaries, patch order, and patch descriptions present |
| 19 | in the quilt patchset. |
| 20 | |
| 21 | For each patch the code attempts to extract the author from the |
| 22 | patch description. If that fails it falls back to the author |
| 23 | specified with --author. If the --author flag was not given |
| 24 | the patch description is displayed and the user is asked to |
| 25 | interactively enter the author of the patch. |
| 26 | |
| 27 | If a subject is not found in the patch description the patch name is |
| 28 | preserved as the 1 line subject in the git description. |
| 29 | |
| 30 | OPTIONS |
| 31 | ------- |
Stephan Beyer | 459cf2e | 2008-06-08 03:36:10 +0200 | [diff] [blame] | 32 | |
| 33 | -n:: |
Eric W. Biederman | d3bd4ee | 2006-05-17 14:10:25 -0600 | [diff] [blame] | 34 | --dry-run:: |
| 35 | Walk through the patches in the series and warn |
| 36 | if we cannot find all of the necessary information to commit |
| 37 | a patch. At the time of this writing only missing author |
| 38 | information is warned about. |
| 39 | |
Eric W. Biederman | d3d8f36 | 2006-05-17 12:44:40 -0600 | [diff] [blame] | 40 | --author Author Name <Author Email>:: |
| 41 | The author name and email address to use when no author |
| 42 | information can be found in the patch description. |
| 43 | |
| 44 | --patches <dir>:: |
| 45 | The directory to find the quilt patches and the |
| 46 | quilt series file. |
Sergey Vlasov | d53ebb4 | 2007-03-01 22:41:15 +0300 | [diff] [blame] | 47 | + |
| 48 | The default for the patch directory is patches |
| 49 | or the value of the $QUILT_PATCHES environment |
| 50 | variable. |
Eric W. Biederman | d3d8f36 | 2006-05-17 12:44:40 -0600 | [diff] [blame] | 51 | |
| 52 | Author |
| 53 | ------ |
| 54 | Written by Eric Biederman <ebiederm@lnxi.com> |
| 55 | |
| 56 | Documentation |
| 57 | -------------- |
| 58 | Documentation by Eric Biederman <ebiederm@lnxi.com> |
| 59 | |
| 60 | GIT |
| 61 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 62 | Part of the linkgit:git[1] suite |