标签:推送 git clone 提交 type git push lang line lin code
完整迁移,就是指,不仅将所有代码移植到新的仓库,而且要保留所有的commit记录
git clone --bare 旧的git地址
会在当前目录下产生一个 xxx.git 的文件夹
这个步骤,就是克隆git每一次的提交信息
和本地的代码没有关系,只要线上的代码是最新的,这个git版本就是完整的
cd xxx.git
git push --mirror 新的git地址
删不删无所谓,只是说明它没有用了而已。
git clone 新的git地址
标签:推送 git clone 提交 type git push lang line lin code
原文地址:https://www.cnblogs.com/shihaibin821/p/13265326.html