欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用phpstorm编辑器开发用git pull 同步代码报错 .idea/workspace.xml

程序员文章站 2024-03-24 09:12:28
...

问题:在github上管理项目,多次提交以后提交提示workspace.xml出现conflicted

原因:项目在根目录的.gitignore文件中没有添加.idea文件夹忽略。

解决办法:

1.在.gitignore中添加一行:

.idea/

用phpstorm编辑器开发用git pull 同步代码报错 .idea/workspace.xml

2.在git shell中运行:

git rm -r --cached .idea/
git add .
git commit -m "untrack .idea/"

同步提交后在github中可以看到最新的commit内容是删除了idea文件夹及其文件夹内文件。

3.之后的git commit由于在,gitignore中添加了忽略idea文件夹,不会出现conflict