GIT迁移仓库地址时如何保留分支和历史记录

需求背景

GIT仓库(GitLab)所在服务器因某些原因要关停,相关服务需转移到另外一台机器上.

操作步骤

# clone项目
git clone --mirror http://192.168.12.10/source.git
# 进入clone下来的项目目录
cd source.git
# 设置远程仓库地址
git remote set-url --push origin http://192.168.12.12/target.git
# 推送项目
git push --mirror
# 返回目录
cd ..

参考资料

https://blog.csdn.net/jlq_diligence/article/details/124234773

posted on 2022-07-20 06:13  白首码农  阅读(364)  评论(0编辑  收藏  举报