如果直接git push 推送仓库的话,标签 和 分支都不能推送到目标仓库,使用一下方案可以搞定
2.推送的时候使用
git仓库完全迁移
拉取仓库的时候使用
git clone --bare 仓库地址
推送仓库的时候
git push --mirror 仓库地址
示列
克隆git的版本库
git clone --bare https://github.com/wsdo/git-complete-guide.git
推送到目标仓库
git push --mirror https://github.com/wsdo/git-complete-guide.git
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。