Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何从数千个更改的文件中创建一个 git 补丁,但只包含特定的文件类型。例如,我只需要将在我的存储库中更改的 .cp 和 .js 文件类型包含在补丁中。
就是这么简单。如果您只想在补丁中包含特定的文件类型,您可以按照以下语法进行:
> git diff 0fa393b64893 940dd1e792b -- '*.cp' '*.js' > my.patch > git apply my.patch
您需要导航到 bash 中的存储库目录。
> cd /c/projects/myproject/