How to connect TFVC (version control) to Visual Studio Code? Interested in basic operations such as checkin, checkout, resolve.
Microsoft recently released Visual Studio Team Services Extension for Visual Studio Code.
The process of installing is pretty straight forward:
If you have VS 2015 installed on your machine, your path to Team Foundation tool (tf.exe) may look like this:
{
"tfvc.location": "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\tf.exe",
"tfvc.restrictWorkspace": true
}
Or for 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
}
From View -> Command Pallette ..., type team signin
In this step, you need to provide a personal access token.
If you already have VSTS account, go to VSTS online website. Under your name (top right corner of the screen), click Security, then click Add and then Create Token Copy and paste the generated token to VS Code
Hope it helps.