手动分叉时应该将什么推送到新的遥控器?

问题描述 投票:0回答:1

我需要将现有存储库分叉到新的远程。

什么应该推送到新存储库?

$ git remote add relocated http://new...
$ git push --all relocated
$ git push --tags relocated

我还应该在新遥控器上放什么?

git fork
1个回答
0
投票
git branch -M <yourBranchName>
git commit -m "<yourCommitMessasage>"
git push -u origin <yourBranchName>
© www.soinside.com 2019 - 2024. All rights reserved.