我不小心跟踪了.idea/workspace.xml
rubymine 创建的文件,现在我似乎无法从跟踪中删除该文件。
因此,它已被多次检查,但我真的希望它停止被跟踪,因为它会导致合并冲突。
这是我一直尝试删除文件的方法。
git rm --cached .idea/workspace.xml
$ git status On branch master Changes to be committed: (use "git reset HEAD <file>..." to unstage) deleted: .idea/workspace.xml
git commit -m 'remove workspace file from tracking'
- 将此条目添加到我的 .gitignore 文件中
.idea/*