如何完整复制一个Git项目
in git with 0 comment

如何完整复制一个Git项目

in git with 0 comment

克隆项目

git clone --bare https://github.com/exampleuser/old-repository.git

进入文件夹 push到新仓库

$ cd old-repository.git
$ git push --mirror https://github.com/exampleuser/new-repository.git

参考链接

https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/duplicating-a-repository