I looked this up and almost every answer linked to a gitignore repository or a website. However, upon inspection I've found that it doesn't ignore files that I'm having problems with.
The files in question are:
Which of these files are safe to ignore? Which are not? And for what reasons?
Thanks!
This totally depends on what you want to track in source control. I'd say typically files prefixed with a "dot" are safe to ignore/exclude from source control.
Some of your files contain the word "user" which would imply they're user-specific files and shouldn't be committed; otherwise, each user would likely have diff changes for these files each time they worked on the project, which probably isn't what you want. I see one file has "suo" which is a Visual Studio convention for "solution user options", and the same logic applies there too.
I'd assume you want to track PROJECTNAME.rds
in source control, and you wouldn't want to track the others.