I have created a repository. I've been using GitHub desktop and RStudio to version control my project.
The folder setup I've created is:
- Master project. (r files)
- data prep scripts (r functions)
- input data (rds files used in the master script from the r functions)
- output files (XLSX files from script)
First off, I created a .gitignore with the /input_data syntax.
When I went to check GitHub it is still tracking those .rds files. Is that the correct syntax to prevent tracking of the files in the input_data folder?
If so, how do I stop these files from being tracked?