首先是修改本地的仓库地址
git remote rm origin
git remote add origin git@...... (或者http://........)
错误1:
解决方案:
在pull 时候, 添加–allow-unrelated-histories参数 即可,代码如下:
git pull origin master --allow-unrelated-histories
错误2:
解决方案:git commit --amend --author="tianhongfan <tianhongfan@58.com>" -m "初始化"
具体步骤参考另外一篇文章:
gitlab上的项目迁移(所有分支迁移)_tianhongfan10106的专栏-CSDN博客_gitlab 迁移项目所有分支