Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

remove .idea folder from git

Blacklist the .idea folder by adding the “.idea” folder to the .gitignore file in master, 
then commit this change.
In your branch, check this file out from master. 
git checkout master -- .gitignore
Remove the .idea folder from the git tree
git rm --cached -r .idea

and commit this change to your branch.
 
PREVIOUS NEXT
Tagged: #remove #folder #git
ADD COMMENT
Topic
Name
9+5 =