如果直接git push 推送仓库的话,标签 和 分支都不能推送到目标仓库,使用一下方案可以搞定

文章首发 https://shudong.wang/10634.html

2.推送的时候使用

git仓库完全迁移

拉取仓库的时候使用
  1. git clone --bare 仓库地址

推送仓库的时候
  1. git push --mirror 仓库地址

示列

克隆git的版本库
  1. git clone --bare https://github.com/wsdo/git-complete-guide.git

推送到目标仓库
  1. git push --mirror https://github.com/wsdo/git-complete-guide.git