如何在WebStorm中集成TFS?

时间:2019-07-06 12:07:32

标签: tfs webstorm tfvc

我已经在WebStorm的版本控制中使用Git,但是必须使用TFS版本控制。经过一些研究后,this plugin很喜欢,但是没有针对该插件进行配置的教程。

有人可以引导我吗?

1 个答案:

答案 0 :(得分:1)

您可以opt for using git tfs,在本地仍然可以使用Git和您惯用的所有优点。然后从git推送到TFVC。您需要安装Team ExplorerTeam Explorer Cross Platform Commandline Tools

或者您可以将本机插件用于latest version of the TFS / Azure DevOps (Server) plugin can be found on the Jetbrains site。它需要TFS 2015或更高版本。您可以使用在旧版TFS中找到的插件。

一个good explanation to get started can be found here。配置TFVC的部分复制如下。

Visual Studio Team Services插件和TFVC

在开始使用TFVC之前,我们需要一个外部工具。有问题的工具是TF命令行工具。它随Microsoft Team Explorer Everywhere 2015和you can download it here一起提供。

我们感兴趣的文件是TEE-CLC-14.0.3.zip。下载并解压缩到您选择的文件夹中。您应该最终得到与此类似的东西。

enter image description here

现在,打开命令提示符,移至您提取TF命令行工具的文件夹中,然后运行以下命令:

tf eula / accept

如果命令成功执行,但您没有收到任何错误,那就很好了。

enter image description here

现在回到IDEA。打开设置面板。

enter image description here

,然后移至“版本控制”->“ TFVC”窗格。在“选择可执行文件的路径”字段中,输入TF命令行工具文件夹中tf.cmd命令文件的确切路径。

enter image description here

完成后,按“测试”按钮,您应该看到以下消息

enter image description here

确认所有打开的窗口并返回IDEA欢迎页面。现在,您可以选择团队服务TFVC(预览版)版本控制。

enter image description here

这时,与Git一样,系统将提示您有关与TFS的连接。将显示以下对话框。

enter image description here

移动到Team Foundation Server选项卡并指定TFS服务器的地址,然后单击connect。现在将提示您输入凭据,如果一切正常,将显示可用的TFVC存储库列表。

enter image description here

您现在可以直接从IDEA创建一个新的工作区,然后开始使用TFVC存储库。