I have read this guide and says:
Why is the directory "Timer/RoutineTimer/.idea/" not ignored in my repository?
I have read this guide and says:
Why is the directory "Timer/RoutineTimer/.idea/" not ignored in my repository?
.gitignore will only prevent this file from being added, but it is already in the repository. You have to remove the files from your repository. The following link has more information:
To un-track a committed pattern (file/folder) you must first remove it from the staging area, add it to .gitignore
and commit your changes
# remove any committed file.
git rm -r --cached <file>
# remove any committed directory and all its content. (-rf for recursive)
git rm -rf --cached <folder>
If you wish to totally remove the content form your repository without leaving any undesired committed content - use this tool