-
Notifications
You must be signed in to change notification settings - Fork 82.9k
Improve TeX.gitignore to ignore Overleaf temporary files #4783
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -44,6 +44,13 @@ | |||||
| *.rubbercache | ||||||
| rubber.cache | ||||||
|
|
||||||
| ## Overleaf (online LaTeX editor) | ||||||
| .overleaf/ | ||||||
| *.synctex.gz.tmp | ||||||
| *.lock | ||||||
| *.partial | ||||||
|
||||||
| *.partial | |
| .overleaf/*.partial |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
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.
| *.upload | |
| .overleaf/*.upload |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern
*.lockis 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/*.lockor documenting which specific Overleaf lock files this targets. If Overleaf generates lock files with a specific naming pattern, use that instead.