Git移除.deal等配置文件

如何在已经提交代码之后,移除.idea等配置文件

总结,先删除,再提交。

  1. 先把.idea的配置文件剪贴到别的地方
  2. 通过git提交
    1. git add .
    2. git commit -m ""
    3. git push origin master
  3. 去git仓库会发现配置文件已经没有了
  4. 干净后,git rm -r --cached .idea 取消跟踪
  5. 新建.gitignore文件,由于在windows中,无法新建没有名称的txt文件,所以需要通过git bash来创建。
    1. 在项目根目录下打开git bash
    2. touch .gitignore
    3. 打开新建的文件,添加.idea等要忽略的文件
  6. 把第一部的配置文件重新剪切回来
  7. 重新添加提交

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×