git仓库整体迁移

项目中遇到git仓库迁移,很常见。如何把一个项目中所有的分支,tag等迁移到另一个仓库地址,需要执行一个特别的克隆命令,然后镜像push到新的仓库地址。具体步骤如下:
1.打开命令行工具
2.以bare的方式克隆老的仓库

git clone --bare https://github.com/exampleuser/old-repository.git
3.镜像push到新的仓库地址

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git
4.在电脑中删掉老得仓库,把新的仓库重新拉下来

cd …
rm -rf old-repository.git

你可能感兴趣的:(git,github)