How do I create new repository on github using devtools in RStudio? I\'ve tried to:
Now there's setup(), which creates the skeleton inside an existing directory. Together with hub, this becomes:
setup()
git init NewPackage cd NewPackage Rscript -e "devtools::setup()" hub create git add . git commit -m "initial" git push -u origin HEAD