首先在 rstudio里面新建project或者package,需要了解Rstudio
然后rstudio的git/svn需要设置好秘钥连接到自己的GitHub, 参考:http://www.bio-info-trainee.com/2477.html 这个需要仔细理解。
接着在自己的GitHub里面新建对应的仓库
最后可以进入自己本地的project或者package文件夹里面运行:
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
如果更新了项目(新加了文件),这个是最高频需求
,就添加即可:
$cd ~/hello-world $git add . //这样可以自动判断新加了哪些文件,或者手动加入文件名字 $git commit //提交到本地仓库,不加参数会提示,注意:^=Ctrl,按照提示来就好了~~~ $git push origin master //不是新创建的,不用再add 到remote上了