27 lines
476 B
Plaintext
27 lines
476 B
Plaintext
# .gitignore
|
|
|
|
# Ignore renv binary cache
|
|
renv/cache/
|
|
renv
|
|
|
|
# Ignore temporary files
|
|
*.tmp
|
|
*.swp
|
|
*.save
|
|
|
|
# Ignore ALL PNG files by default (generated outputs, analysis plots, etc.)
|
|
*.png
|
|
|
|
# EXCEPTIONS: Explicitly track intentional PNG assets
|
|
# Uncomment or add lines below for PNG files that should be committed to git
|
|
!CI_graph_example.png
|
|
# Ignore files related to Rproj
|
|
.Rproj.user/
|
|
.Rhistory
|
|
.RData
|
|
.Rprofile
|
|
# Ignore OSX files
|
|
.DS_Store
|
|
CI_report_dashboard_planet_files/
|
|
|