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:
git init NewPackage
cd NewPackage
Rscript -e "devtools::setup()"
hub create
git add .
git commit -m "initial"
git push -u origin HEAD
You can specify the path to your github repository in create
instead of the package name:
create("/path/to/root/of/repository")
Then the normal git commands to add, commit and push to github:
git commit -a -m "initial commit" *
git push
Hope this helps someone:
rpackage
in this example)create("rpackage")
(this will create rpackage folder)rpackage
directorygit init
Start Git/More/Shell and type
git add *
git commit -m "first commit"
git remote add origin git@github.com:[username]/rpackage.git
git push -u origin master
Then you can refresh repository on github
. Now you can close (or even delete) your local project and next time you can start a new project Project/New project/Version Control/Git