Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions TeX.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@
*.rubbercache
rubber.cache

## Overleaf (online LaTeX editor)
.overleaf/
*.synctex.gz.tmp
*.lock
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pattern *.lock is too broad and could inadvertently ignore legitimate lock files from other tools (e.g., package managers, build tools, or other LaTeX tools). Consider using a more specific pattern like .overleaf/*.lock or documenting which specific Overleaf lock files this targets. If Overleaf generates lock files with a specific naming pattern, use that instead.

Suggested change
*.lock
.overleaf/*.lock

Copilot uses AI. Check for mistakes.
*.partial
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pattern *.partial is too broad and could inadvertently ignore files that users or other tools intentionally create with '.partial' extensions. Consider using a more specific pattern that targets only Overleaf-generated partial files, such as a specific naming convention or location (e.g., .overleaf/*.partial), if Overleaf generates these files with a predictable pattern.

Suggested change
*.partial
.overleaf/*.partial

Copilot uses AI. Check for mistakes.
*.upload
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pattern *.upload is too broad and could inadvertently ignore files from other upload-related workflows or tools. Consider using a more specific pattern that targets only Overleaf-generated upload files, such as .overleaf/*.upload or a more specific naming pattern if Overleaf uses one.

Suggested change
*.upload
.overleaf/*.upload

Copilot uses AI. Check for mistakes.

## Build tool directories for auxiliary files
# latexrun
latex.out/
Expand Down
Loading