Heim > Fragen und Antworten > Hauptteil
我在github上建了一个远程库
然后想把本地代码合并到远程库上,但是他报下面那种错
我在之前测试的时候在github上创建了一个空的库然后本地也能push上去,
为什么再在github创建一个库的时候他就会一直报下面的错
网上的方法也用了什么git pull
之类的都没用
这是怎么回事?
过去多啦不再A梦2017-05-02 09:49:54
你目前是用ssh,仓库地址应该是git@github.com:Missyanwen/2017KK.git
如果要用https,仓库地址应该是https://github.com/Missyanwen/2017KK.git
错误提示的很清楚,然而你成功的把这两个地址糅杂成一团:p
高洛峰2017-05-02 09:49:54
你搞错了仓库的url,你可以修改远程仓库的url为https://github.com/Missyanwen...
git remote set-url origin https://github.com/Missyanwen/2017KK.git
顺便说一下,git使用的协议主要有三种https、git、ssh,前两种是比较常用的,正如二楼所说的:
错误提示的很清楚,然而你成功的把这两个地址糅杂成一团:p
建议新手使用https协议。
你可以直接复制远程仓库的地址作为它的url。