Start new R package development on github

前端 未结 3 1079
耶瑟儿~
耶瑟儿~ 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: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

提交回复
热议问题