Conte-Ecology / conteStreamTemperature

Package for cleaning and analyzing stream daily stream temperature
MIT License
1 stars 1 forks source link

Remove .Rproj.user from repo #1

Closed walkerjeffd closed 10 years ago

walkerjeffd commented 10 years ago

Looks like you added the .Rproj.user folder to the git repo before creating the .gitignore file. This might cause problems for others who clone the repo and open it in RStudio.

I think you can remove it by running this at command line:

git rm -r --cached .Rproj.user

Note you may want to just move this out of your local directory temporarily (and then put it back in after running git rm) because this might not only remove it from the repo but delete the folder also (but I think the --cached flag is supposed to prevent that). But just to be safe, keep a backup copy in another directory in case it does delete it.

djhocking commented 10 years ago

That seemed to work. Let me know if there's any lingering problems.

ghost commented 7 years ago

This worked well for me, thanks!