用于 Oracle 开发人员的 VSTS / TFVC cli
VSTS / TFVC cli for oracle developer
我是一名 Oracle 数据库开发人员。我的组织正在使用 VSTS 存储库进行代码存储。对于使用 Visual studio 的人来说,签入代码很容易。但是对于Db人来说,我们总是要通过拖入的方式手动签入代码。
有什么方法可以用oracle工具连接到vsts repos source control吗?我们使用 TFVC 作为我们的版本控制(而不是 GIT)。
听起来您应该看看 TF.exe CLI。这个 CLI 让你几乎可以做你在 VS GUI 中能做的一切。
这是 link Microsoft 文档的 TF,Use Team Foundation version control commands
根据您的评论,您似乎正在使用 TFVC 作为源代码管理。假设您在 windows 平台上工作,check in command 应该是您要找的平台。
In the following examples, the %PathToIde%
is usually on a path like
this: %ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE
, or on
Windows x64: %ProgramFiles(x86)%\Microsoft Visual Studio
10.0\Common7\IDE
(depending on Visual Studio version and installation settings).
Example for get:
cd C:\TFS\Arquitectura
"%PathToIde%\TF.exe" get $/Arquitectura/Main /recursive
Example for checkout:
cd C:\TFS\Arquitectura
"%PathToIde%\TF.exe" checkout $/Arquitectura/Main /recursive
Example for checkin:
cd C:\TFS\Arquitectura
"%PathToIde%\TF.exe" checkin $/Arquitectura/Main /recursive
Source Link
如果您正在 Linux,请查看此博客 -- Team Foundation Version Control and the Linux Command Line
我是一名 Oracle 数据库开发人员。我的组织正在使用 VSTS 存储库进行代码存储。对于使用 Visual studio 的人来说,签入代码很容易。但是对于Db人来说,我们总是要通过拖入的方式手动签入代码。
有什么方法可以用oracle工具连接到vsts repos source control吗?我们使用 TFVC 作为我们的版本控制(而不是 GIT)。
听起来您应该看看 TF.exe CLI。这个 CLI 让你几乎可以做你在 VS GUI 中能做的一切。
这是 link Microsoft 文档的 TF,Use Team Foundation version control commands
根据您的评论,您似乎正在使用 TFVC 作为源代码管理。假设您在 windows 平台上工作,check in command 应该是您要找的平台。
In the following examples, the
%PathToIde%
is usually on a path like this:%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE
, or on Windows x64:%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE
(depending on Visual Studio version and installation settings).Example for get:
cd C:\TFS\Arquitectura "%PathToIde%\TF.exe" get $/Arquitectura/Main /recursive
Example for checkout:
cd C:\TFS\Arquitectura "%PathToIde%\TF.exe" checkout $/Arquitectura/Main /recursive
Example for checkin:
cd C:\TFS\Arquitectura "%PathToIde%\TF.exe" checkin $/Arquitectura/Main /recursive
Source Link
如果您正在 Linux,请查看此博客 -- Team Foundation Version Control and the Linux Command Line