赞
踩
.gitignore 文件内容如下:
- .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
命令。
git rm -f --cached -r .idea/workspace.xml
执行以上命令后,刷新即可取消勾选。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。