目录搜索
GuidesgitattributesgiteverydaygitglossarygitignoregitmodulesgitrevisionsgittutorialgitworkflowsAdministrationgit archivegit bundlegit cleangit filter-branchgit fsckgit gcgit instawebgit reflogBasic Snapshottinggit addgit commitgit diffgit mvgit resetgit rmgit statusBranching and Merginggit branchgit checkoutgit loggit mergegit mergetoolgit stashgit tagDebugginggit bisectgit blamegit grepEmailgit amgit format-patchgit request-pullgit send-emailExternal Systemsgit fast-importgit svnGetting and Creating Projectsgit clonegit initGitgit annotategit archimportgit bisect-lk2009git check-attrgit check-mailmapgit check-ref-formatgit checkout-indexgit cherrygit citoolgit columngit credentialgit credential-cachegit credential-storegit cvsexportcommitgit cvsimportgit cvsservergit diff-filesgit diff-treegit difftoolgit fast-exportgit fetch-packgit fmt-merge-msggit get-tar-commit-idgit guigit http-backendgit http-fetchgit http-pushgit imap-sendgit index-packgit interpret-trailersgit ls-remotegit ls-treegit mailinfogit mailsplitgit merge-filegit merge-indexgit merge-one-filegit merge-treegit mktaggit mktreegit name-revgit notesgit p4git pack-objectsgit pack-redundantgit pack-refsgit parse-remotegit patch-idgit prunegit prune-packedgit quiltimportgit receive-packgit remote-extgit remote-fdgit remote-testgitgit repackgit replacegit rereregit send-packgit sh-i18ngit sh-setupgit shellgit show-branchgit show-indexgit stripspacegit unpack-filegit unpack-objectsgit upload-archivegit upload-packgit vargit verify-commitgit verify-taggit whatchangedgit worktreeInspection and Comparisongit describegit shortloggit showMiscellaneousapi credentialsapi indexgitcligitcore tutorialgitcredentialsgitcvs migrationgitdiffcoregithooksgitkgitnamespacesgitremote helpersgitrepository layoutgitsubmodulesgittutorial 2gitwebgitweb.confpack formatUser ManualPatchinggit applygit cherry-pickgit rebasegit revertPlumbing Commandsgit cat-filegit check-ignoregit commit-treegit count-objectsgit diff-indexgit for-each-refgit hash-objectgit ls-filesgit merge-basegit read-treegit rev-listgit rev-parsegit show-refgit symbolic-refgit update-indexgit update-refgit verify-packgit write-treeServer Admingit daemongit update-server-infoSetup and Configgitgit configgit helpSharing and Updating Projectsgit fetchgit pullgit pushgit remotegit submodule
文字

名称(Name)

git-quiltimport  - 在当前分支上应用一个被套补丁集

概要

git quiltimport [--dry-run | -n] [--author <author>] [--patches <dir>]                [--series <file>]

描述

在当前 Git 分支上应用被套补丁集,保留补丁集中存在的补丁边界,补丁顺序和补丁说明。

对于每个修补程序,代码尝试从修补程序描述中提取作者。如果失败了,它会回到给作者指定的作者。如果未给出--author 标志,则会显示修补程序描述,并要求用户交互输入修补程序的作者。

如果在修补程序描述中找不到主题,则修补程序名称将作为 Git 描述中的第1行主题保留。

选项

-n   --dry-run

浏览系列中的补丁,并警告我们是否无法找到提交补丁所需的全部信息。在写这篇文章的时候,只有缺失的作者信息会被警告。

- 作者作者姓名<作者电子邮件>   (--author Author Name <Author Email>)

在修补程序描述中未找到作者信息时使用的作者姓名和电子邮件地址。

--patches <dir>

用于查找被子修补程序的目录。

修补程序目录的默认值是修补程序或$QUILT_PATCHES环境变量的值。

--series <file>

quilt 系列文件。

系列文件的默认值是<patches> / series 或$QUILT_SERIES环境变量的值。

上一篇:下一篇: