我正在研究 CI 构建自动化任务,我想使用 Git 提交 ID 命名我的构建。我打算编写一个 C# 程序来做到这一点。我可以使用哪些库从 C# 调用 Git 存储库?我可以调用本地存储库克隆并使用 git.exe(Windows) 或 libgit2sharp 检索此信息,但我不知道如何在远程源上执行此操作
问问题
7928 次
2 回答
2
我使用LibGit2Sharp已经有一段时间了,它很好。
下面是一个示例,它将遍历commits
您的url
.
注意:我必须做一个clone
,不确定是否有更好的方法:
string url = "http://github.com/libgit2/TestGitRepository";
using (Repository repo = Repository.Clone(url, @"C:\Users\Documents\test"))
{
foreach (var commit in repo.Commits)
{
var commitId = commit.Id;
var commitRawId = commitId.RawId;
var commitSha = commitId.Sha; //0ab936416fa3bec6f1bf3d25001d18a00ee694b8
var commitAuthorName = commit.Author.Name;
commits.Add(commit);
}
}
于 2013-06-07T04:33:43.563 回答
1
从 CI 的角度来看,您可能愿意构建一个特定的分支。
下面的一段代码演示了这一点。
using (Repository repo = Repository.Clone(url, localPath))
{
// Retrieve the branch to build
var branchToBuild = repo.Branches["vNext"];
// Updates the content of the working directory with the content of the branch
branchToBuild.Checkout();
// Perform your build magic here ;-)
Build();
// Retrieve the commit sha of the branch that has just been built
string sha = branchToBuild.Tip.Sha;
// Package your build artifacts using the sha to name the package
Package(sha);
}
注意: url
可以指向:
- 远程 http url (
http://www.example.com/repo.git
) - CI 服务器上的位置 (
file:///C:/My%20Documents/repo.git
) - 网络上的一个位置 (
file://server/repos/repo.git
)
于 2013-06-07T05:44:55.203 回答