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.
请看下图。所选文件无法暂存或提交。
这是 IDE 自己生成的文件。
我也通过终端尝试过,但它没有暂存或提交,甚至没有添加 .gitignore 。
任何解决方案?
谢谢。
如果它被列为已修改,那么它之前已经提交过。
您可以从终端执行以下操作:
git rm --cached .idea/workspace.xml echo ".idea/workspace.xml" >> .gitignore git status
该文件不应再列为已修改。