赞
踩
解决方案:使用git push --mirror命令,完成仓库的完美迁移
例如 :我们的代码存储在A服务,需要钱移到B服务器去。
git clone A地址
git push --mirror B服务器地址
git clone B地址
执行完这三步就可以完整的看到之前的commit记录、log日志等,并且不影响A服务器地址的代码。