File Access in Team Foundation Server Version Control without Visual Studio

How can I access the files stored in the original TFS control without installing Visual Studio?

+4
source share
2 answers

You can check Team Explorer Everywhere as an alternative way to get Team Foundation source code.

The actual source code is stored in the SQL Server database that Team Foundation Server installs.

+1
source

On Windows, installing Team Explorer (included with TFS) will allow you to install enough Visual Studio to access TFS. It also installs a command line tool ( tf.exe ) that can be used to perform most operations without having to start Visual Studio.

Installing TFS PowerToys will additionally add the PowerSehll module, which includes cmdlets for most version control operations, and integrates perfectly with PowerShell.

On other operating systems, look at Team Explorer Everywhere (as marc_s already answered).

+1
source

Source: https://habr.com/ru/post/1341974/


All Articles