GIT进行代码仓库完整迁移
例如: git remote set-url --push origin http://gitee.com/demo.git。例如: git clone --mirror http://gitee.com/test.git。git remote set-url --push origin 新代码仓库地址。至此,旧仓库已经完整推送到了新的代码仓库,commit记录和代码分支完整。3、将仓库中的旧的远
·
1、通过clone命令将仓库镜像下载到本地
git clone --mirror 仓库地址
例如: git clone --mirror http://gitee.com/test.git
2、进入本地镜像仓库
cd <仓库名称>
例如: cd test.git
3、将仓库中的旧的远端地址更改为新仓库地址
git remote set-url --push origin 新代码仓库地址
例如: git remote set-url --push origin http://gitee.com/demo.git
4、将修改后的Git镜像仓库推送到新的仓库
git push --mirror
至此,旧仓库已经完整推送到了新的代码仓库,commit记录和代码分支完整
总结:
git clone --mirror http://old.git
git remote set-url --push origin http://new.git
git push --mirror
更多推荐
已为社区贡献1条内容
所有评论(0)