无法从Team服务中获取Git的所有分支

时间:2016-09-02 05:56:53

标签: git azure-devops

我使用团队服务git作为存储库 我在Git存储库中有3个分支。

但是当我在Visual Studio 2015中克隆存储库时,我只能克隆存储库的master分支。

有没有办法让我可以使用visual studio克隆存储库的所有分支 我在VS中附加了分支结构和分支,我只能看到master分支。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

克隆回购只创建并结帐一个分支(默认分支,通常是主分支,链接到远程跟踪分支origin / master)

你应该能够获取并查看其他分支作为origin / xxx(参见" Visual Studio 2013 - Git - Fetch remote branches")

另见" Connecting to a remote Git branch from Visual Studio"来自Esteban Garcia

  

在本地查看分支之前,您需要为远程分支创建本地跟踪分支。您可以使用命令行执行此操作:

git branch dev –track origin/dev
  

您也可以直接从Visual Studio执行此操作。

     

首先,点击“新科”
  然后从下拉列表中选择远程分支,这将自动填充分支本地名称。

http://www.almguide.com/wp-content/uploads/2014/12/image_thumb4.png