如何下载上游分支?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以通过执行以下操作来查看远程分支:
要签出分支,请尝试:
You can see the remote branches also by doing:
To checkout a branch, try: