如何忽略 git 中除具有特定扩展名的文件之外的所有文件?
我需要忽略除以 .php
、.css
、.html
或 .js
结尾的所有文件。
这就是我现在 .gitignore 文件中的内容:
*
!.php
!/*.php
!*.php
它确实忽略所有内容,但只允许根目录中的 .php
文件,同时隐藏所有其余内容。
I need to ignore all files except those ending in .php
, .css
, .html
or .js
.
This is what I have in my .gitignore file for now:
*
!.php
!/*.php
!*.php
It does ignore everything, but only permits .php
files in root directory, while hiding all the rest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于那些想要包含位于子目录中的文件扩展名的人,例如
@jmborr 和 @Racso
发现于:https://stackoverflow.com/a/33983585/5388625
For those, who would like to include file extensions which are located in subdirs like
@jmborr and @Racso
Found in: https://stackoverflow.com/a/33983585/5388625