前提:对方项目开源,未有密钥
原文
如果你clone下来一个别人的仓库,在此基础上完成你的代码,推送到自己的仓库可能遇到如下问题:
error: remote origin already exists.表示远程仓库已存在。
因此你要进行以下操作:
1、先输入git remote rm origin 删除关联的origin的远程库
2、关联自己的仓库 git remote add origin https://gitee.com/xxxxxx.git
3、最后git push origin master,这样就推送到自己的仓库了。
检查
文章来源:https://www.toymoban.com/news/detail-558998.html
这时候关联上来但是还没有提交代码上去
文章来源地址https://www.toymoban.com/news/detail-558998.html
到了这里,关于github上clone下来别人仓库的源码,如何推送到自己的仓库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!