如何在 GitHub 上获取别人的分支上的分支?

发布于 2025-01-02 07:47:25 字数 139 浏览 2 评论 0原文

我从 GitHub 上的一个存储库中分叉了。我想从另一个用户的分支上获取代码。

我必须将此用户的整个存储库克隆到单独的本地存储库,还是可以执行诸如 git checkout link_to_the_other_users_branch 之类的操作?

I've forked from a repo on GitHub. I want to get the code from a branch on another user's fork.

Must I clone this user's whole repo to a separate local repo or can I do something like git checkout link_to_the_other_users_branch?

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

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

发布评论

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

评论(2

浮世清欢 2025-01-09 07:47:25
$ git remote add theirusername [email protected]:theirusername/reponame.git
$ git fetch theirusername
$ git checkout -b mynamefortheirbranch theirusername/theirbranch

请注意,在第一步中添加远程时,您可以使用多个“正确”的 URI。

  • [电子邮件受保护]:theirusername/reponame.git 是基于 SSH 的 URI
  • https://github.com/theirusername/reponame.git 是一个 HTTPS URI

您更喜欢使用哪一个取决于您的情况。 GitHub 有一篇帮助文章解释了差异并帮助您选择:为远程存储库选择 URL

$ git remote add theirusername [email protected]:theirusername/reponame.git
$ git fetch theirusername
$ git checkout -b mynamefortheirbranch theirusername/theirbranch

Note that there are multiple "correct" URIs you can use for the remote when you add it in the first step.

  • [email protected]:theirusername/reponame.git is an SSH-based URI
  • https://github.com/theirusername/reponame.git is an HTTPS URI

Which one you prefer to use will depend on your situation. GitHub has a help article explaining the difference and helping you choose: Choosing a URL for your remote repository

剧终人散尽 2025-01-09 07:47:25

amalloy的建议对我不起作用。这样做是:

git remote add theirusername https://github.com/theirusername/reponame
git fetch theirusername
git checkout -b mynamefortheirbranch theirusername/theirbranch

资源:

amalloy's suggestion didn't work for me. This did:

git remote add theirusername https://github.com/theirusername/reponame
git fetch theirusername
git checkout -b mynamefortheirbranch theirusername/theirbranch

Resources:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文