Answers for "remove .idea folder from git"

0

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.
Posted by: Guest on June-22-2021
0

remove .idea from git

for reference : https://www.david-merrick.com/2017/08/04/how-to-remove-the-idea-folder-from-git/
Posted by: Guest on November-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language