gitlab 镜像仓库迁移
方法一:克隆到本地,再推送到新的gitlab 服务器打开 Git Bash。创建仓库的裸克隆。$ git clone --bare https://github.com/exampleuser/old-repository.git镜像推送至新仓库。$ cd old-repository.git$ git push --mirror https://github.com/exampleuser/ne
·
方法一:
克隆到本地,再推送到新的gitlab 服务器
- 打开 Git Bash。
- 创建仓库的裸克隆。
$ git clone --bare https://github.com/exampleuser/old-repository.git
- 镜像推送至新仓库。
$ cd old-repository.git
$ git push --mirror https://github.com/exampleuser/new-repository.git
- 删除您之前创建的临时本地仓库。
$ 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
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)