Answers for "git ignore .idea folder"

1

git ignore .idea folder

Git never ignores changes to tracked files. As it appears as modified, the file 
is under version control (the idea/workspace.xml file usually should not be) 
and thus changes to it are tracked. Delete it from the index, leaving your 
local copy intact with

git rm --cached .idea/workspace.xml 

and commit this change. From then on it will be ignored unless you force-add it 
back to the repository or change your gitignore settings.

# Remove the file from the repository
git rm --cached .idea/

# now update your gitignore file to ignore this folder
.idea/

# add the .gitignore file
git add .gitignore

git commit -m "Removed .idea files"
git push origin <branch>
Posted by: Guest on November-20-2020
0

gitignore .idea

.idea/
Posted by: Guest on July-19-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language