Skip to content

Commit

Permalink
Use more thorough gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuroShepherd committed May 28, 2024
1 parent 797e05d commit 338f804
Showing 1 changed file with 55 additions and 2 deletions.
57 changes: 55 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,60 @@
.Rproj.user
# History files
.Rhistory
.Rapp.history

# Session Data files
.RData
.RDataTmp

# User-specific files
.Ruserdata

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# R Environment Variables
.Renviron

# pkgdown site
docs/

# translation temp files
po/*~

# RStudio Connect folder
rsconnect/

# Quarto
/.quarto/

# Future-proofing: ignore commonly included files that should not be tracked
# Inspired by usethis::git_vaccinate() options
.DS_Store
.Rproj.user
.httr-oauth
.quarto
_site/
**/.DS_Store

0 comments on commit 338f804

Please sign in to comment.