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