由于当前本地的代码也是从其他的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’