Start new R package development on github

前端 未结 3 1072
耶瑟儿~
耶瑟儿~ 2021-01-31 06:24

How do I create new repository on github using devtools in RStudio? I\'ve tried to:

  1. Create empty repository on github named \"MyNewRPackage\"
  2. Started new
相关标签:
3条回答
  • 2021-01-31 06:48

    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
    
    0 讨论(0)
  • 2021-01-31 06:49

    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
    
    0 讨论(0)
  • 2021-01-31 06:53

    Hope this helps someone:

    1. Create empty repository on github (I will use name rpackage in this example)
    2. Create package locally using devtools, create("rpackage") (this will create rpackage folder)
    3. Create new project in RStudio (Create project from: Existing directory) and choose rpackage directory
    4. In RStudio go to Tools/Shell... and type git init
    5. Reopen the project (this will refresh the Git tab)
    6. 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

    0 讨论(0)
提交回复
热议问题