.gitignore not ignoring .idea path

前端 未结 9 2135
无人及你
无人及你 2021-01-29 18:29

What am I missing that needs to be done in order to get git to ignore my .idea/ path?

ctote@ubuntu:~/dev/1$ git status
On branch master         


        
9条回答
  •  逝去的感伤
    2021-01-29 18:39

    add .idea/ to .gitignore file

    run this commands in terminal to complete mission :)

    git rm -rf .idea
    git commit -m "delete .idea"
    git push
    

提交回复
热议问题