我有一个包含6个文件的Git补丁。
我想只应用包含上述文件的.patch
文件中的rrr.php
git-apply
命令包含--exclude
arg,但不包括--include
。
如何仅应用.patch
文件中的rrr.php?
答案 0 :(得分:2)
你说:
git-apply
命令包含--exclude
arg,但不包括--include
--include=<path-pattern>
将更改应用于与给定路径模式匹配的文件。在导入要包含某些文件或目录的补丁集时,这非常有用。
尝试:
git apply --include=rrr.php some.patch
使用Git版本1.8.4验证。