如何在 GitHub 上获取别人的分支上的分支?
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,在第一步中添加远程时,您可以使用多个“正确”的 URI。
[电子邮件受保护]:theirusername/reponame.git
是基于 SSH 的 URIhttps://github.com/theirusername/reponame.git
是一个 HTTPS URI您更喜欢使用哪一个取决于您的情况。 GitHub 有一篇帮助文章解释了差异并帮助您选择:为远程存储库选择 URL
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 URIhttps://github.com/theirusername/reponame.git
is an HTTPS URIWhich 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
amalloy的建议对我不起作用。这样做是:
资源:
amalloy's suggestion didn't work for me. This did:
Resources: