工具癖Git

git清除误提交文件和目录

2017-09-25  本文已影响0人  一根弦的风筝

在eclipse中用git不小心提交了配置目录与文件, 可以参照以下步骤去除

  1. 只删除已经添加到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
  1. 提交
git commit -m "你的说明内容"
git push
  1. 需要修改 .gitignore 文件,把.classpath .porject .settings 添加到忽略内容里面去
上一篇下一篇

猜你喜欢

热点阅读