经过其他Q&因为我无法找到我想要的答案。
我已经分叉了html5样板并在Linux本地克隆了它。我想在本地进行更改然后将它们提交到我的fork ,而不会影响或建议对原始存储库进行更改。
提前谢谢。
答案 0 :(得分:3)
我已经分叉了html5-boilerplate并在Linux本地克隆了它。
如果您推送更改(使用git push
),如果您克隆了分叉存储库,它们将被推入您的分支。
如果克隆了源存储库并希望在fork中推送更改,则必须添加新的远程或在git push
命令中传递fork url:
git remote add myFork https://github.com/owner/forked-repo.git
git push myFork --all
或:
git push https://github.com/owner/forked-repo.git --all