把gitlab仓库迁移至github上的流程步骤
gitlab仓库迁移到github的流程步骤:
1. 克隆仓库到本地
git clone 被迁移的仓库地址
2. 如果需要克隆指定的 commitid 对应的代码仓库 (不需要请忽略这一步)
查看对应的 commit 的日志 选择回退的版本id:
git log
根据版本 id 回退(commitid 为对应的 id):
git reset --hard <commitid>
3. 提交同步.git 文件 (请先在 github 上创建对应的迁移仓库)
cd 克隆过的仓库地址
cd .git
git push --mirror 迁移的仓库地址
相关文章