把rstudio的project或者package同步到自己的GitHub

2018-08-16 17:15:24 浏览数 (1)

首先在 rstudio里面新建project或者package,需要了解Rstudio这款编辑器哦。

然后rstudio的git/svn需要设置好秘钥连接到自己的GitHub, 参考生信菜鸟团博客教程:http://www.bio-info-trainee.com/2477.html 这个需要仔细理解。 (需要耗时30分钟)

接着在自己的GitHub里面新建对应的仓库

最后可以进入自己本地的project或者package文件夹里面运行:

代码语言:javascript复制
cd /Users/jmzeng/Documents/Nutstore/Rpackage/biotrainee 
git init
git add *
git commit -m "first commit"
git remote add origin https://github.com/jmzeng1314/biotrainee.git
git push -u origin master

然后就大功告成啦!

https://github.com/jmzeng1314/biotrainee

如果更新了项目(新加了文件),这个是最高频需求 ,就添加即可:

代码语言:javascript复制
$cd ~/hello-world
$git add . //这样可以自动判断新加了哪些文件,或者手动加入文件名字
$git commit //提交到本地仓库,不加参数会提示,注意:^=Ctrl,按照提示来就好了~~~
$git push origin master //不是新创建的,不用再add 到remote上了

这样就成功的完成了整个流程!

感兴趣的朋友可以安装看看,代码如下:

代码语言:javascript复制
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))
source("http://bioconductor.org/biocLite.R")
options(BioC_mirror="http://mirrors.ustc.edu.cn/bioc/") 
BiocInstaller::biocLite("jmzeng1314/biotrainee")

0 人点赞