r studio fatal:没有配置推送目的地

时间:2017-11-12 01:33:03

标签: r git rstudio blogdown

我正在尝试使用R package blogdown创建博客。 最后一步是将我的文件推送到Github,然后点击了#34; Push Branch", 这给了我这个错误信息:

enter image description here

我对Git / Github与R Studio的集成经验不足。有人可以详细解释该做什么吗?

1 个答案:

答案 0 :(得分:0)

<强>语法

您可以将远程git服务器URL添加到本地git存储库配置中,如此

git remote add origin your_git_repository_url

示例

在git local repository文件夹中,发布命令:

git remote add origin https://github.com/donhuvy/java9.git

了解详情

https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes#_adding_remote_repositories(官方参考文件)

https://help.github.com/articles/adding-a-remote/