其他分享
首页 > 其他分享> > 关于代码仓库迁移的问题

关于代码仓库迁移的问题

作者:互联网

首先是修改本地的仓库地址

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 迁移项目所有分支

标签:origin,pull,git,仓库,代码,histories,--,迁移
来源: https://blog.csdn.net/tianhongfan10106/article/details/123083128