第一步,新建仓库并复制仓库地址
例如:http://gitlab.xxx.com/xxx/Pro...
第二步,删除需要迁移的本地项目所关联的远程仓库地址
git remote remove origin
第三步,关联新仓库的地址
git remote add origin http://gitlab.xxx.com/xxx/Pro...
第四步,把项目推送到新的远程仓库
git push origin
可以从原仓库地址克隆一份裸版本库(.git)
git clone --bare http://github.com/xxx/project...
最后一步,将项目里的.git目录的所有分支镜像推送到远程仓库
git push --mirror http://gitlab.xxx.com/xxx/Pro...
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。