Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何使用 .gitignore 从存储库中忽略此文件?
我正在使用 Gitlab。
我已经尝试过这个:
提前致谢
gitignore 行是正确的,但如果一些匹配的文件已经推送到远程存储库,git 会忽略它。这意味着文件在 git 索引中,因此它需要暂存它们,直到您将其从索引中删除。
您可以尝试使用从 git 索引中删除文件
git rm --cached npm-debug.log.xxx
在此线程上查看更多信息:)