ignoring defined build files
There are different ways to ignore files depending on the workflow and software being used. When working in RStudio the two core ignore files are:
.gitignore
This is used when working with git version control. If files are defined in this file they will not be tracked on git and github and therefore will be lost if deleted or needed on a different computer.
This is my current template:
[coming soon]
Rbuildignore
This file reflects the aspects of a package repository (folder). It is possible to hash out statements you do not want to run. Here is my current template.
[coming soon]