KentonWhite / ProjectTemplate

A template utility for R projects that provides a skeletal project.
http://projecttemplate.net
GNU General Public License v3.0
622 stars 159 forks source link

no error or warning if missing directories #97

Closed jackwasey closed 10 years ago

jackwasey commented 10 years ago

create.project() git push to new remote (empty directories are not stored in git) git pull to another machine load.project() (fails, doesn't munge anything, no error or warning) mkdir data (etc) (works)

KentonWhite commented 10 years ago

@jackwasey this is being worked on in issue #35. A partial solution is available in branch 90-migrate. You can install this solution using devtools:

install.packages('devtools')
library('devtools')
install_gitub('johnmyleswhite/ProjectTemplate', ref='90-migrate')

Would love to get your opinion on how this solution works for you and ways that it can be made better.