0


如何从一个git服务器仓库将项目迁移到另一个git服务器仓库

最近服务器迁移涉及到代码也需要一块迁移,梳理了一些git服务迁移指令,希望大家共享😁(从服务器A迁移到服务器B)

1. 首先将服务器A上的代码进行备份

1.1 git备份指令【从A服务器(https://gitlab.xxxx.cn)上clone代码到本地】
​​​​

git clone --bare https://gitlab.xxxx.cn/front/ifixxx-h5.git

1.2 clone代码后如图所示:
在这里插入图片描述

2. 将备份后的代码迁移到B服务器上

2.1 首先进入到刚才备份的.git代码文件中(如图所示:cd ifix-h5.git文件下)**
在这里插入图片描述
2.2将.git文件下内容push到新的服务B服务器(https://gitlab.xxxx.cn/)上
​​​​

git push --mirror https://gitlab.xxxx.cn/backend/if**x-h5.git

在这里插入图片描述

3. 备份的代码如何还原

ifxxxx-h5(备份的代码)1. git clone --bare https://gitlab.xxx.cn/backend/ifxxxx-h5
2. git config --unset core.bare
3. git reset --hard

执行完如上3个指令即可得到备份的代码,如下图:

在这里插入图片描述

标签: git 服务器 github

本文转载自: https://blog.csdn.net/u013013790/article/details/128436763
版权归原作者 爱丫爱 所有, 如有侵权,请联系我们删除。

“如何从一个git服务器仓库将项目迁移到另一个git服务器仓库”的评论:

还没有评论