From 9aa86b46104f1ce2cbb35461d01619368b9df208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonat=C3=A1n=20Perren?= <57823100+gxono@users.noreply.github.com> Date: Fri, 27 Mar 2026 21:24:28 -0300 Subject: [PATCH 1/2] TeX: add ConTeXt utility cache file (.tua & .tuc) ConTeXt generates .tua and .tuc files (utility cache) during each run. These files store document metadata between compilations and are not part of the source, so they should be ignored. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 9308a4b649..e1f14f0a21 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -75,6 +75,10 @@ acs-*.bib # comment *.cut +# context +*.tua +*.tuc + # cprotect *.cpt From de90107f1a343c4429b0a1146c5c60036cb208d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonat=C3=A1n=20Perren?= <57823100+gxono@users.noreply.github.com> Date: Fri, 3 Apr 2026 22:06:17 -0300 Subject: [PATCH 2/2] TeX: add ConTeXt utility cache file (.tuc, .tui & tuo) ConTeXt generates .tuc files (utility cache) during each run. These can be removed using the command line [--purgeall](https://wiki.contextgarden.net/Input_and_compilation/Executable_scripts_and_auxiliary_files/context_script#--purgeall). ConTeXt MKII generates .tui and .tuo with the generation of [ToC](https://wiki.contextgarden.net/Document_structure_and_headlines/Table_of_contents). These files store document metadata between compilations and are not part of the source, so they should be ignored. --- TeX.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index e1f14f0a21..542f7143fc 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -76,8 +76,9 @@ acs-*.bib *.cut # context -*.tua *.tuc +*.tui +*.tuo # cprotect *.cpt