git 意外忽略文件
我已经从 svn 迁移了 git repo。存在 git 意外忽略文件的问题。 它忽略我添加到项目中的所有 png
文件,尽管 .gitignore
文件中没有规则
更多信息(这可能不相关),我曾经忽略“一些" 当我使用 svn 时,会生成 png
文件,这是在 .gitignore
文件中指定的。像这样的东西; /project/web/images/white/.*png
所以这应该适用于一个文件夹,对吗?我不知道这是否与我的问题有关,因为即使我删除了这一行,问题仍然存在。
提前致谢
I have git repo migrated from svn. There is a problem about git ignoring files unexpectedly.
It ignores ALL png
files I add to the project, although there is no rule at .gitignore
file
A little more info (this maybe irrelevant), I used to ignore "some" png
files when I was working with svn and this is specified in .gitignore
file. Something like; /project/web/images/white/.*png
So this should be aplying to one folder right? I don't know if this is anything to do with my problem, since even I remove this line, the problem persists.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很奇怪,我删除了 .gitignore 文件并再次重新添加了相同的文件。现在它已经修复了。
This is very strange, I deleted the .gitignore file and re-added the same file again. And now it is fixed.