I use GitLab
as a repository for a Android
project. I want to ignore the files in the openCVLibrary320
folder at commit/push
time. I typed the folder as follows in the file .gitignore
:
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.externalNativeBuild
/openCVLibrary320
I changed any file within the openCVLibrary320
folder. When giving commit
it was to ignore this file, but it appears to be committed.
What should I do?