I have ommited the following files from my Latex repo.
*.aux
*.glo
*.idx
*.log
*.toc
*.ist
*.acn
*.acr
*.alg
*.bbl
*.blg
*.dvi
*.glg
*.gls
*.ilg
*.ind
*.lof
*.lot
*.maf
*.mtc
*.mtc1
*.out
I see my Professor submitted a .fls Latex file. Should this file be version controlled? I am trying to understand what this file refers to.
I see from another StackOverflow post (File extensions related to LaTeX, etc) that:
.fls - running latex with $ latex -recorder
The question is whether this intermediate file .fls is auto-generated or this needs to be version controlled.
-recordercommand? Seems like it records the full filesystem path of all dependent files. – Exploring Sep 03 '20 at 17:48latexmkuse this to get a list of files that have to be monitored for changes to trigger a rebuild. – Henri Menke Sep 03 '20 at 21:34