SYNOPSIS
gitquiltimport
[--dry-run
|-n
] [--author
<author>] [--patches
<dir>] [--series
<file>] [--keep-non-patch
]
DESCRIPTION
quiltパッチセットを現在のGitブランチに適用し、quiltパッチセットに存在するパッチ境界、パッチ順序、およびパッチの説明を保持します。
パッチごとに、コードはパッチの説明から作者を抽出しようとします。それが失敗した場合は、 --author
で指定された作者にフォールバックします。 --author
フラグが指定されていない場合、パッチの説明が表示され、ユーザーはパッチの作者をインタラクティブに入力するように求められます。
パッチの説明に件名が見つからない場合、パッチ名はGitの説明の1行の件名として保持されます。
OPTIONS
-
-n
-
--dry-run
-
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.
-
--author
'AuthorName
<AuthorEmail
>' -
The author name and email address to use when no author information can be found in the patch description.
-
--patches
<dir> -
The directory to find the quilt patches.
The default for the patch directory is patches or the value of the
$QUILT_PATCHES
environment variable. -
--series
<file> -
The quilt series file.
シリーズファイルのデフォルトは、 <patches>/series または
$QUILT_SERIES
環境変数の値です。 -
--keep-non-patch
-
Pass
-b
flag to git mailinfo (see git-mailinfo(1)).
GIT
Part of the git(1) suite