如何将.gitignore文件设置为忽略包含无效字符的文件,如下例所示
WEB文件
foo. js
foo.js <----space after the s
CSS:CSS.css
foo???.html
我只希望忽略任何包含特殊字符/空格的文件。同样,如果我也可以将其应用于文件夹。
文件夹
images <----space after the s
我给9-12年级的学生上了一堂Web开发课,并使用github,每天都让我惊讶的是,孩子们怎么能找到炸毁我的存储库的方法。这些都是导致github桌面无法拉取来源的文件和文件夹的示例。
请注意以下结构:
/assets --> this dir shouldn't be ignored. but SOME OF their contents SHOULD.;
ignoredfile.jpg --> should be ignored.
ignoredfile2.gif --> --> should be ignored.
/blog --> this dir shouldn't be ignored. but SOME OF their contents SHOULD.;
/images --> this dir sh