gitclone 代码上传到另一个仓库中

发布时间:2024年01月10日

由于当前本地的代码也是从其他的git仓库上clone下来的,所以就不需要执行sudo git init命令了。

1.sudo git add . ----将当前目录下的所有文件添加到版本库。

2.sudo git commit -m “一些说明” ----把添加的文件提交到仓库

3、git remote rm origin

4、 git remote add origin 新的远程git仓库的地址 ----关联到新的远程库的地址

由于我们当前的代码是从其他的git仓库上clone下来的,所以当前的关联仍然是之前的git地址,所以这一步会失败,并出现如下的错误信息:

fatal: remote origin already exists.

5、git remote -v 命令查看是否关联到了新的git仓库地址。

Git add .
git commit -m “提交”
git push origin main
报错,可能不是main 是master

6、还是报错

User $ git push -u origin main error: src refspec main does not match
any error: failed to push some refs to
‘https://gitlab.com/code6860702/gst-hbcarotidattri_old.git’

在这里插入图片描述
在这里插入图片描述

文章来源:https://blog.csdn.net/m0_37192554/article/details/135507139
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。