从git中删除.idea目录

  1. 将.idea目录加入ignore清单:

    $ echo '.idea' >> .gitignore

  2.  从git中删除idea:

    $ git rm -cached -r .idea

  3. 将.gitignore文件加入git:

    $ git add .gitignore

  4. Commit gitignore文件,将.idea从源代码仓库中删除:

     $ git commit -m 'gitignore commit and remove .idea'

  5. Push到服务器:

      $ git push

posted @ 2020-04-16 10:47  素手揽清风  阅读(1201)  评论(0编辑  收藏  举报