Git 仓库代码无损迁移命令 发表于 2018-04-09 迁移远程仓库123456789// 克隆旧仓库镜像git clone --mirror oldRepoUrl// 添加新仓库地址cd the_repogit remote add remoteName newRepoUrl// 推到新的远程库git push -f --tags remoteName refs/heads/*:refs/heads/* 更新本地仓库方式1. 远程仓库迁移后,可删除本地代码仓库和镜像仓库,重新克隆新仓库代码。方式2. 进入本地代码仓库,更新仓库地址12345// git查看远程仓库地址git remote -v// 设置新的仓库地址git remote set-url origin newRepoUrl