新建的git仓库同步旧的git仓库代码,并保留git提交历史记录
git remote add $源名称$ 仓库地址
例如:
git remote add abc [email protected]:xxx/abc.git
然后需要将新建的源代码pull到本地,注意需要添加allow-unrelated-histories
git fetch abc
git merge abc/master --allow-unrelated-histories
最后
git push abc
标签:历史记录,git,仓库,histories,新建,abc
From: https://www.cnblogs.com/chenhuichao/p/17444099.html