gitlab代码迁移,包含历史提交记录、标签、分支

1、克隆现有的GitLab仓库(http://localhost:8888/aa/bb/cc.git)到本地,包括所有分支和标签

复制代码
git clone --bare http://localhost:8888/aa/bb/cc.git

2、在gitlab上创建一个空的仓库(http://localhost:7777/aa/bb/cc.git

复制代码
//切换到cc目录下,
cd cc.git/

//-f为强制推送
git push -f --mirror http://localhost:7777/aa/bb/cc.git

3、问题:

如果推送时报错,则应该是分支受保护了

复制代码
第一种:! [rejected]        master -> master (fetch first)
第二种:! [rejected]        master -> master (non-fast-forward)
第三种:! [remote rejected] master -> master (pre-receive hook declined)

解决,在设置->仓库->允许强制推送勾选后,再执行第二步

4、切换新仓库

复制代码
git remote set-url origin http://localhost:7777/aa/bb/cc.git
相关推荐
java搬砖工-苤-初心不变10 小时前
解决 Go 模块与 GitLab 私有仓库权限问题:SSH、HTTPS 和自动认证指南
golang·ssh·gitlab
@BreCaspian1 天前
生成 SSH Key 并配置 GitHub/GitLab 详细教程
ssh·gitlab·github
乄bluefox5 天前
解决GitLab无法拉取项目
gitlab
laugh123217 天前
GitLab 服务器宕机时的项目代码恢复方法
服务器·git·gitlab·数据恢复
路由侠内网穿透10 天前
本地部署仓库管理工具 Gitlab 并实现外部访问
linux·运维·服务器·网络协议·tcp/ip·gitlab
码农葫芦侠10 天前
GitLab CI/CD学习教程(第四章gitlab-ci.yml)
学习·ci/cd·gitlab
极小狐10 天前
GitLab 中文版17.10正式发布,27项重点功能解读【三】
安全·gitlab·devsecops·devops
云上艺旅10 天前
K8S学习之基础五十九:部署gitlab
学习·云原生·容器·kubernetes·gitlab
怪只怪满眼尽是人间烟火13 天前
CentOS7 离线下载安装 GitLab CE
运维·gitlab
细水VS长流13 天前
gitlab回退到指定提交记录
gitlab