Nair
Nair

Reputation: 7458

Is it possible to use Visual Studio Code with Visual Studio Team Services (was TFS Online)?

I am building AngularJS/TypeScript app using Visual Studio Code in my Mac and it is a great experience so far. The group of people I work with are using Team Services as source control instead of Git. Is there an extension or plugin available for Visual Studio Code which enables me to use Visual Studio Team Services?

Upvotes: 1

Views: 913

Answers (1)

jessehouwing
jessehouwing

Reputation: 114661

Not it's not possible to use TFVC as your source control system directly. But you have a few options.

  1. In Visual Studio Team Services (the new name of Visual Studio Online/TFS Online), you can have both a TFVC and a git repository in the same Team project.
  2. You could use git tf to use git on your end, yet push you changes to a TFVC repository. There are limitations (as the two systems are not the same of course).

Upvotes: 2

Related Questions