e63e815c5b
为了更清晰地组织项目文件,将LaTeX相关的临时文件忽略规则从根目录的.gitignore文件中移除,并添加到paper/latex目录下的.gitignore文件中。
36 lines
315 B
Plaintext
36 lines
315 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.roo
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
logs/
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local work directory
|
|
workdir/
|
|
|
|
# cache
|
|
unsloth_compiled_cache
|
|
|
|
# 测试和参考代码
|
|
test.ipynb
|
|
test.py
|
|
refer/ |