VisualStudio2013 git,只列出了 Master 分支

我正在使用 VisualStudio2013的 Git 支持来处理一个私有的 GitHub 存储库。我有许可证可以承诺。我想切换分支,但是当我转到 Branch 视图时,任何列表(分支下拉列表、已发布分支、合并工具)中唯一的分支是 master。其他分支显示在 GitHub、 GitHub for Windows 和 TortoiseGit 中。所以我知道他们在那里,我有权限。

知道为什么我在 Visual Studio 中看不到其他分支吗?

enter image description here

我正在运行 VisualStudio2013Update2。

37467 次浏览

The branch dropdown will only show local branches, it will not show remote branches. You should create a new local branch to track that remote branch. Simply click the New Branch dropdown, and you will see all the remote branches:

enter image description here

Once you've done that, this will appear as a "published branch" allowing you to push and pull to it.