- 以 bare 的方式克隆老的仓库
git clone --bare https://github.com/exampleuser/old-repository.git
- 镜像 push 到新的仓库地址
git push --mirror https://github.com/exampleuser/new-repository.git
然后就可以把本地的老仓库删除掉,把新的仓库重新拉下来。然后愉快的写代码。
git clone --bare https://github.com/exampleuser/old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git
然后就可以把本地的老仓库删除掉,把新的仓库重新拉下来。然后愉快的写代码。