在不更新父级的情况下从终端更新我的叉子

Updating my fork from terminal without updating parent

在完成其他问答后,我无法完全找到我正在寻找的答案。

我分叉了 html5-boilerplate 并在 Linux 中本地克隆了它。我想在本地进行更改,然后将它们提交到我的分支 ,而不影响 或提议对原始存储库进行更改。

提前致谢。

I've forked html5-boilerplate and have cloned it locally in Linux.

如果您要推送您的更改(使用 git push),如果您克隆了分叉的存储库,它们将被推送到您的分叉中。

如果您克隆了源存储库并希望将更改推送到分叉中,您必须添加一个新的远程或在 git push 命令中传递分叉 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