关于 Git 仓库 迁移的方法
迁移命令模板
镜像克隆:
12git clone --mirror https://github.com/../old.git old.gitcd old.git然后推送镜像:
12git remote set-url --push origin git@gitcafe.com/.../new.gitgit push --mirror或者推送新建remote再推送:
123git remote add mirror origin git@gitcafe.com/.../new.gitgit push mirror --allgit push mirror --tags
project-a 迁移实例
|
|
|
|
|
|
|
|
本站点采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。