在eclipse中用git不小心提交了配置目录与文件, 可以参照以下步骤去除
- 只删除已经添加到index的文件,并不删除本地文件
git rm -r --cache .classpath .project .settings/
cache的解释
https://git-scm.com/docs/git-rm
--cached
Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not, will be left alone.
windows可以使用
git rm --help
- 提交
git commit -m "你的说明内容"
git push
- 需要修改 .gitignore 文件,把.classpath .porject .settings 添加到忽略内容里面去