Hi,
I have ignored the entire .idea folder, but there are still some files that are not being ignored at all.
Even the ignore option in the context menu is disabled for that files.
One of those is ./idea/libraries/compass_library.xml
Is there any way to ignore them?
Many thanks,
Unai
Something to check: .gitignore has no effect on files that are already tracked (have been committed before). You will have to Stop Tracking those files. Stop Tracking will leave the files in your working copy, but delete them from your repository.
I've stopped tracking them, and it worked fine.
Many thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your .gitignore might be incorrect, you need
.idea/
(with the "/" at the end) to ignore the whole folder (, but Seth probably has the right answer here).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.