Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
687 views
in Technique[技术] by (71.8m points)

tfs - VSCODE and TFVC how to connect?

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...