git-删除workspace.xml的跟踪

问题描述

.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

执行以上命令后,刷新即可取消勾选。

相关推荐
乌夷3 天前
在pom.xml中通过repositories在Maven构建过程中访问setting.xml之外的仓库
xml·java·maven
振宇i3 天前
Mybatis xml动态SQL 判断失效问题
xml·sql·mybatis
程序员老王wd6 天前
java xml 文本解析
xml·java
小百菜7 天前
dom4j解析含有命名空间的XML
xml·dom4j
黎明晓月7 天前
MyBatis XML一个方法执行插入或更新操做(PostgreSQL)
xml·postgresql·mybatis
GoKu~7 天前
项目配置文件选择(Json,xml,Yaml, INI)
xml·json
枫叶落雨2227 天前
mybatis-plus: mapper-locations: “classpath*:/mapper/**/*.xml“配置!!!解释
xml·java·mybatis
double丶flower7 天前
mybatis在mapper.xml中怎么处理大于、小于、不等于号
xml·java·mybatis
一只爱打拳的程序猿7 天前
pom.xml和spring-config.xml
xml·java·spring
tonysh_zds7 天前
freemarker 读取template.xml ,通过response 输出文件,解决中文乱码问题
xml·java·开发语言