方法一:
克隆到本地,再推送到新的gitlab 服务器

  1. 打开 Git Bash。
  2. 创建仓库的裸克隆。
$ git clone --bare https://github.com/exampleuser/old-repository.git
  1. 镜像推送至新仓库。
$ cd old-repository.git
$ git push --mirror https://github.com/exampleuser/new-repository.git
  1. 删除您之前创建的临时本地仓库。
$ cd ..
$ rm -rf old-repository.git

方法二:
从旧的 gitlab 服务器迁移到新的gitlab

ls |grep -v wiki|while read line;
do 
cd $line && echo ssh://git@gitlabssh.xxx.com:22/test/$line;
git push --mirror ssh://git@gitlabssh.xxx.com:22/test/$line;
cd /data/gitlab/data/git-data/repositories/test;
done
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐