赞
踩
git时遇到这样的问题:
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: .idea/workspace.xml
.idea/workspace.xml这是个工作文档空间的什么东西(感觉有时候你在工作区并没有改变,这个文件都会发生变化),不需要向你的项目里提交的。
在你需要忽略这个文件之前,你首先要确定你之前是否向你的Git远端仓库提交过
.gitignore
文件中添加.idea/workspace.xml
,没有.gitignore
这个文件的话,可以vim .gitignore
创建一个。也可以在你的编译器里设置,我用的是webstorm,可以在这个地方设置 git rm -r --cached <file name>
//或者 git rm -r --cached .
git add .
git commit -m 'update .gitignore'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。