Skip to content

Instantly share code, notes, and snippets.

@ankitdbst
Created December 7, 2014 17:13
Show Gist options
  • Save ankitdbst/cf418d7d78e4463b8177 to your computer and use it in GitHub Desktop.
Save ankitdbst/cf418d7d78e4463b8177 to your computer and use it in GitHub Desktop.
Remove .idea from Git
$ echo '.idea' >> .gitignore
$ git rm -r --cached .idea
$ git add .gitignore
$ git commit -m '(some message stating you added .idea to ignored entries)'
$ git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment