最近git越来越不稳定,国内经常出问题。有时候需要迁移git项目,但是老项目有大量的历史提交信息是很重要的,如果不想丢失的话,可以按照一下方法试试(以gitLab为例)。
一、新的gitlab上新建项目
二、更改本地仓库的remote和把代码推到新的项目上
git remote rename origin old-origin
git remote add origin http://ip:port/your-project.git(或git@ip:port/your-project.git)
git push -u origin --all
git push -u origin --tags
三、删除老的remote old-origin(git push 和git pull就不用指定remote了)
git remote rm old-origin
四、其他人更新,有两种方式
1、简单粗暴方式:删除原来的项目,重新clone
或者
2、更新remote地址
git config remote.origin.url http://ip:port/your-project.git(或git@ip:port/your-project.git)
git pull
ps: 最近刚刚迁移完,遇到一些平常没遇到的问题,解决了以后记录一下
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。