From 1d045d58b829c82980141a0e3346b6f2f9ee0e05 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Wed, 8 May 2013 13:06:10 +1000 Subject: [PATCH 1/2] Ignore .fls files in LaTeX projects From the man page for latexmk (http://manpages.ubuntu.com/manpages/raring/man1/latexmk.1L.html): [...] the -recorder option with latex and pdflatex. In (most) modern versions of these programs, this results in a file of extension .fls containing a list of the files that these programs have read and written. Latexmk specifies this option in its latex commands and so produces temporary files with this extension in latex projects. --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bbaaa01b..dc2f7e84 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -6,6 +6,7 @@ *.blg *.dvi *.fdb_latexmk +*.fls *.glg *.glo *.gls From 4624470231a1211b7522e43ec9747267c045e95e Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 10 May 2013 17:15:48 +1000 Subject: [PATCH 2/2] Also ignore additional tempfiles created by the biblatex package. Refer to the biblatex manual at http://ctan.unsw.edu.au/macros/latex/contrib/biblatex/doc/biblatex.pdf: (p.106): The name of the additional aux files is the base name of the main input file with the string -blx and a running number appended at the end. [...] Apart from these aux files, biblatex uses an additional bib file with the same suffix to pass certain control parameters to BibTeX. [...] When using Biber, biblatex writes a control file named example.bcf and ignores \blxauxsuffix. Note: the running number mentioned in the documentation is not always added to the suffix. --- LaTeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index dc2f7e84..975dbfb5 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -3,7 +3,10 @@ *.alg *.aux *.bbl +*.bcf *.blg +*-blx.aux +*-blx.bib *.dvi *.fdb_latexmk *.fls