Blogger Information
Blog 18
fans 0
comment 3
visits 12523
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
一步解决gitee码云在初步安装出现问题error: remote origin already exists.
P粉019280626
Original
507 people have browsed it

git问题error: remote origin already exists.

在我们安装vscode建立本地库和远程仓库后,要将本地库的项目推送到远程仓库时,需要自我介绍,和执行git remote add origin http:******.git命令。

比如我的是执行git remote add origin https://gitee.com/gaombamaster/22.git

正常回车执行即可。

但是我终端执行时出现了error: remote origin already exists.这一行错误提示导致无法执行。


经过摸索,找出了解决办法。这是因为其他的origin关联了远程库。所以你无法推送到自己的远程仓库中。

第一,先执行git remote rm origin 指令,解除关联的origin的某个远程库

第二,再执行 git remote add origin https://gitee.com/xxxxxx.git  指令关联自己的仓库。比如我执行的的git remote add origin https://gitee.com/gaombamaster/22.git

到这里问题就解决了。

第三,如果要开始推送项目,再执行git push origin master指令,这样就将项目推送到自己的仓库了。


出自:gaombamaster的blog

gitee remote-origin-already-exists.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments