例如,我有以下git补丁:
diff --git a/Gruntfile.js b/Gruntfile.js
index d220f35..176c71a 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -10,7 +10,7 @@ module.exports = function (grunt) {
src: ['index.less', '!**/components/**'],
dest: 'build/development/css',
ext: '.css',
- cleancss: true
+ cleancss: false
}
]
},
如您所见,它包含应在其上应用这些更改的文件的路径(Gruntfile.js
)。有没有办法将此补丁应用于补丁中指定的文件以外的文件?
答案 0 :(得分:1)
您应该能够直接指定要修补的文件:
$ patch not-Gruntfile-but-close.js unset-cleancss.patch