使用 Visual Studio 2015 扩展的内置 GIT 功能
Use built in GIT Features of Visual Studio 2015 Extension
我正在为我们的团队编写一个小扩展。
在此扩展中,我想将 Visual Studio 2015 的一些内置功能与 GIT 一起使用。
目前我正在使用外部 GIT.exe 向 GIT 发出命令,例如 --grep,然后解析控制台输出。
有没有办法使用 GIT 内置的 VS 以更简单的方式进行此类调用?
问题是 GIT.exe 必须在路径中,这给我的测试用户带来了一些麻烦。
Is there a way to use the VS Built in GIT to make such calls in a easier way?
问题是VisualStudio中没有内置Git。使用库 libgit2sharp 提供 C# api 来管理 git 存储库。
你当然可以使用这个库,但我强烈建议你不要这样做。
如果您需要使用它,请使用它编写您的程序。该库作为 nuget 包提供。
The problem is that the GIT.exe has to be in the path for this, which made some troubles with my test users.
有什么问题... Visual Studio 建议在使用 git 存储库时安装它(要求安装第三方工具的消息),不是吗?
我正在为我们的团队编写一个小扩展。 在此扩展中,我想将 Visual Studio 2015 的一些内置功能与 GIT 一起使用。 目前我正在使用外部 GIT.exe 向 GIT 发出命令,例如 --grep,然后解析控制台输出。 有没有办法使用 GIT 内置的 VS 以更简单的方式进行此类调用? 问题是 GIT.exe 必须在路径中,这给我的测试用户带来了一些麻烦。
Is there a way to use the VS Built in GIT to make such calls in a easier way?
问题是VisualStudio中没有内置Git。使用库 libgit2sharp 提供 C# api 来管理 git 存储库。
你当然可以使用这个库,但我强烈建议你不要这样做。
如果您需要使用它,请使用它编写您的程序。该库作为 nuget 包提供。
The problem is that the GIT.exe has to be in the path for this, which made some troubles with my test users.
有什么问题... Visual Studio 建议在使用 git 存储库时安装它(要求安装第三方工具的消息),不是吗?