git apply patch exclude 2文件

o7jaxewo  于 12个月前  发布在  Git
关注(0)|答案(1)|浏览(105)

你如何git应用补丁,但排除2个文件?对于1个文件或文件模式,你可以做--exclude标志。但如果我有2个不同的文件a.rbb.rb我需要排除,但我有c.rbd.rbe.rb也在补丁需要应用。

cld4siwp

cld4siwp1#

这可以帮助

git apply -v mypatch.patch --exclude={file1.txt, file2.json}

字符串

相关问题