Skip to content

Commit 453d4ab

Browse files
chore: Update .gitignore to exclude generated files
1 parent 7bd65c0 commit 453d4ab

File tree

1 file changed

+29
-23
lines changed

1 file changed

+29
-23
lines changed

.gitignore

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,39 @@
1-
# Quarto
2-
/.quarto/
3-
/_output/
4-
**/*.quarto_ipynb
5-
_site/
6-
_book/
7-
8-
# R
9-
.Rproj.user
10-
.Rhistory
11-
.RData
12-
*.Rproj
1+
# Quarto outputs
2+
_output/
3+
_freeze/
4+
.quarto/
135

146
# Python
7+
.venv/
158
__pycache__/
16-
*.py[cod]
17-
.ipynb_checkpoints/
18-
venv/
19-
env/
9+
*.pyc
10+
11+
# Jupyter
12+
*.ipynb
13+
.jupyter_cache/
2014

21-
# MATLAB
22-
*.asv
23-
*.m~
15+
# System
16+
.DS_Store
17+
Thumbs.db
2418

25-
# LaTeX
19+
# LaTeX temporary files
2620
*.aux
2721
*.log
2822
*.out
2923
*.toc
24+
*.lof
25+
*.lot
3026

31-
# System
32-
.DS_Store
33-
Thumbs.db
27+
# Manuscript outputs (opcional, si quieres mantenerlos)
28+
manuscript/index.html
29+
manuscript/index.pdf
30+
manuscript/index.docx
31+
manuscript/index.tex
32+
33+
# Chapter outputs
34+
chapters/*/index.html
35+
chapters/*/index.pdf
36+
37+
# README outputs
38+
README.html
39+
README_files/

0 commit comments

Comments
 (0)