2
Use the GitLab
as a repository for a project Android
. I want to ignore the files from the folder openCVLibrary320
at the time of commit/push
. 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 altered some file inside the folder openCVLibrary320
. By giving the commit
was to ignore this file, but it appears to be commited.
What should I do ?
Has this file ever been committed? That is, it already exists in the repository?
– Jéf Bueno
yes, I just uploaded it to the repository
– Raphael Prado de Oliveira
Possible duplicate of How to ignore a file after it’s already in a commit?
– Wallace Maxters