在做git仓库迁移的过程中发现git push -u origin --all
并不能将所有的分支都推送到新的仓库中。正确做法如下:
1. git clone --mirror git@github.com:test/test.git // 新的仓库地址
2. cd test.git
3. git remote set-url --push origin git@github.com:test/test.git
4. git push --mirror git@github.com:test/test.git
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。