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
本文来自博客园,作者:白首码农,转载请注明原文链接:https://www.cnblogs.com/bsmn/p/16496451.html