VSCODE and TFVC how to connect?

Gleb Svechnikov picture Gleb Svechnikov · Jul 1, 2015 · Viewed 25.5k times · Source

How to connect TFVC (version control) to Visual Studio Code? Interested in basic operations such as checkin, checkout, resolve.

Answer

Babak picture Babak · May 10, 2017

Microsoft recently released Visual Studio Team Services Extension for Visual Studio Code.

The process of installing is pretty straight forward:

  • Search for Visual Studio Team Services in VS Code and select to install the one by Microsoft
  • Open File -> Preferences -> Settings
  • Add the following lines to your user settings

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.