mirror of
https://github.com/github/gitignore
synced 2024-11-05 03:18:51 +01:00
1559f2ee6b
When saving `.RData`, all data is initially saved in `.RDataTmp` which is then renamed to `.RData`. `.RDataTmp` should be added to `.gitignore` since it will only exist while a save operation is in progress or something failed on save. Relevant links: - https://stackoverflow.com/questions/32098036/purpose-of-rdatatmp-temporary-file-r - https://github.com/wch/r-source/blob/trunk/src/library/base/R/load.R#L145-L154
47 lines
634 B
Plaintext
47 lines
634 B
Plaintext
# 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/*~
|