问题描述
.gitignore 文件内容如下:
bash
.pyc
*.pyc
user_files/
.vscode/
__pycache__/
/.idea/misc.xml
/.idea/modules.xml
/.idea/inspectionProfiles/profiles_settings.xml
/.idea/inspectionProfiles/Project_Default.xml
/.idea/batrp_webbackend-server-dev.iml
/.idea/workspace.xml
/.idea/vcs.xml
Pycharm 查看git本地改动时仍然勾选workspace.xml
原因分析
从 Git 的跟踪列表中移除它,通常使用 git rm --cached
命令。
bash
git rm -f --cached -r .idea/workspace.xml
执行以上命令后,刷新即可取消勾选。