How could I create a git patch from thousands of changed files but only include specific file types. For example I only need .cp and .js file types that are changed within my repository to be included in the patch.

有帮助吗?

解决方案

It's so simple. If you want to include only specific file types in your patch, you could do so by following the below syntax:

> git diff  0fa393b64893 940dd1e792b -- '*.cp' '*.js' > my.patch
> git apply my.patch

You need to navigate to your repository directory in your bash.

> cd /c/projects/myproject/
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top