如何将TFVC (版本控制)连接到Visual Studio代码?对基本操作感兴趣,如签入、签出、解析。
发布于 2017-05-11 02:07:12
微软最近发布了针对Visual Studio Code的Visual Studio Team Services扩展。
安装过程非常简单:
如果您的计算机上安装了VS 2015,则您的Team Foundation tool (tf.exe)路径可能如下所示:
{
"tfvc.location": "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\tf.exe",
"tfvc.restrictWorkspace": true
}或者VS 2017:
{
"tfvc.location": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\tf.exe",
"tfvc.restrictWorkspace": true
}希望能有所帮助。
发布于 2015-07-02 01:41:54
Visual Studio代码支持Git,而不支持TFS。如果你有一个TFS托管的Git仓库,你可以像连接任何Git仓库一样连接到它。如果你使用TFVC进行源代码控制,而不是Git,你就不会有集成的源代码控制。您仍然可以使用Team Explorer Everywhere跨平台CLI对TFS执行源代码控制操作,但您不会有集成的体验。
发布于 2017-04-13 15:16:08
微软发布了一个名为Visual Studio Team Services (vsts-vscode)的插件的新版本,该插件支持TFVC版本控制。它应该与Team Foundation Services以及内部部署的TFS一起使用。
https://stackoverflow.com/questions/31163727
复制相似问题