Does anyone knows how to ignore this file from the repository with .gitignore?
I'm using Gitlab.
I've already tried this:
Thanks in advance
Does anyone knows how to ignore this file from the repository with .gitignore?
I'm using Gitlab.
I've already tried this:
Thanks in advance
Copyright © 2021 Jogjafile Inc.


The gitignore line is correct, but git ignores it if some matching files are already pushed to the remote repository. It means the files are in the git index, so it will want to stage them until you remove it from index.
You could try to delete the file from the git index using
See more on this thread :)