如何下载上游分支?

发布于 2024-12-07 12:37:58 字数 257 浏览 2 评论 0原文

我在 GitHub 上分叉了一个包含许多分支的存储库。所有分支都显示在 GitHub 上。我这样做是为了下载存储库:

git clone git-repo-url
cd git-repo
git remote add upstream git-upstream-url
git fetch upstream

这一切都工作正常,但是当我尝试签出分支时,它不起作用。我只有主分支。我需要做什么才能下载其他分支?

I forked a repo on GitHub with many branches. All the branches show up on GitHub. I do this to download the repo:

git clone git-repo-url
cd git-repo
git remote add upstream git-upstream-url
git fetch upstream

This all works fine, but when I try to checkout a branch, it doesn't work. I only have the master branch. What do I need to do to download the other branches?

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

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

发布评论

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

评论(1

还如梦归 2024-12-14 12:37:58

您还可以通过执行以下操作来查看远程分支:

git branch -a

要签出分支,请尝试:

git checkout -b local-branch upstream/branch

You can see the remote branches also by doing:

git branch -a

To checkout a branch, try:

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