我需要将现有存储库分叉到新的远程。
什么应该推送到新存储库?
$ git remote add relocated http://new...
$ git push --all relocated
$ git push --tags relocated
我还应该在新遥控器上放什么?
git branch -M <yourBranchName>
git commit -m "<yourCommitMessasage>"
git push -u origin <yourBranchName>