I'm new to Github and Git as whole. I'm working on a repository that has a lot of .tex
files and mostly Matlab code. The IDE for Latex I use is Texpad and it creates a folder called .texpadtmp
for auxiliary files. It looks like this:
If I got it right, .gitignore
is all about creating a set of types of files and folders which will be explicitly ignored by Git when committing and tracking. I took to some other repos and how they created their .gitignore file and I created something that looks like this (whit the help of a GitHub template):
However, although I have updated my local repo and everything is in sync, the aforementioned folder is still there and all the auxiliary files are still there, still visible. Is this the expected behavior? Shouldn't it be omitted somehow and never be committed upon or tracked again? Thanks in advance.