在 Github 中,如何将更改提交到克隆并提交拉取请求?

发布于 2024-12-03 18:44:33 字数 61 浏览 2 评论 0原文

我克隆了一个 Github 存储库,做了一些更改,现在我需要提交它们并发送拉取请求。如何将我的克隆变成分叉?

I cloned a Github repo, made some changes, now I need to commit them and send a pull request. How do I turn my clone into a fork?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不会写诗 2024-12-10 18:44:33

转到 github 存储库,然后单击“fork”。现在您有了一个分叉:) 现在您需要将更改推送到您的分叉并通过 github 发送拉取请求

git remote add myfork [email protected]:MyUsername/MyForkRepository.git
git push myfork master

从那里您可以非常轻松地发送拉取请求。

Go to the github repo, then click "fork". Now you have a fork :) Now you need to push your changes to your fork and send the pull request via github

git remote add myfork [email protected]:MyUsername/MyForkRepository.git
git push myfork master

From there you can send the pull request very easy.

燕归巢 2024-12-10 18:44:33

您可以使用 github 的 hub,全部在命令行上进行。为了获得最终的胜利,您可以将“origin”更改为您的分支,并通过一些重命名将您分支的项目更改为上游:

# fork the project you cloned, creates a new remote with your username
# (and forks the project on github if you haven't already done so):
git fork
git remote rename origin upstream
git remote rename YOURUSERNAME origin

You can use github's hub, all on the command line. For the ultimate win you can change 'origin' to be your fork, and change the project you forked to upstream with some renames:

# fork the project you cloned, creates a new remote with your username
# (and forks the project on github if you haven't already done so):
git fork
git remote rename origin upstream
git remote rename YOURUSERNAME origin
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文