忽略git中所有同名文件
有没有办法让 gitignore file 忽略所有名称为 test 的文件?
我有这样的文件:
- css/test.css
- js/subfolder/test.js
- lib/main/sub/test.html
等等。
我希望 git 避免添加或提交任何名为 test 的文件。
Is there a way to have a git ignore file
to ignore all files with the name test in them?
I have files like this:
- css/test.css
- js/subfolder/test.js
- lib/main/sub/test.html
and so on.
I want git
to avoid adding or committing any files with the name test.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 git docs
对于您的情况:
它也匹配大小写。
From git docs
For your case:
it also matches both upper and lower case.
使用
test*
更新.gitignore
另外,请阅读 此了解更多信息。
Update
.gitignore
withtest*
Also, read this for more information.
尝试将模式添加到 test.* 的 .gitignore 中。
添加它并使用上面提到的一些文件执行 git status 。
如果有效的话你就很好了。
Try adding the pattern to .gitignore of test.*
Add it and do a git status with some files like you mentioned above.
If it works you're good.