提交到github远程仓库遇到的问题

Posted 安迪_963

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提交到github远程仓库遇到的问题相关的知识,希望对你有一定的参考价值。

1.could not read from remote repository

  可能原因是没有将ssh 密匙添加到github,所以没有权限

  解决办法:

    1. ssh-keygen -C ‘[email protected]‘ -t rsa

    2. 将第一步生成的rsa pub 添加github 中




2.fatal: remote origin already exists.
远程仓库主分支已经存在

解决办法:
    1.git remote rm origin
    2.git remote add origin [email protected]:xxxx/gitdemo.git

以上是关于提交到github远程仓库遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

git提交代码到远程仓库github

github本地提交代码到远程仓库

如何将本地代码提交到github远程仓库

使用git bash向github远程仓库提交代码

Intellij IDEA 提交代码到远程GitHub仓库

Ⅲ. 通过git管理github上托管的代码