c# – libgit2sharp中的checkout子模块
作者:互联网
我们发现git子模块更新–recursive -f update需要相当长的时间(从Windows 7中的.bat文件运行)并且希望使用编译的exe(可能是c #.net通过libgit2sharp)来检查每个子模块独立(有4个).
在我们使用四个顺序git checkout -f [hash]命令进入每个子模块与运行子模块更新之后,批处理文件速度有明显的差异,我们希望获得速度增益.
任何人都知道如何使用libgit2sharp签出子模块的特定提交?由于repo.Submodule [“name”]的HEAD属性不可设置,我试图用这个来创造(将子模块视为自己的存储库),但libgit2sharp似乎认为它们不是他们自己的存储库. ..bummer:
for (int cntr = (int)argumentIndeces.LiquidsId; cntr < (int)argumentIndeces.MethodConfigId; cntr++)
{
Logger.Debug("About to checkout '" + argNames[cntr].Replace('/', '\\') + "' at commit: '" + arguments[argNames[cntr]] + "'");
Repository sub = new Repository(superProjectPath + "\\" + argNames[cntr].Replace('/', '\\') );
Commands.Checkout(sub, arguments[argNames[cntr]]);
Logger.Debug("Checked out '" + argNames[cntr].Replace('/', '\\') + "' at commit: '" + arguments[argNames[cntr]] + "'");
Console.WriteLine("checked out: " + sub.Tags);
}
解决方法:
这借用了olmobrutall在Github(#482)上的帖子中的一些想法,但是不再需要调用已弃用的函数.这只是一个git reset – hard而不是fetch,因为这更容易实现.
using (Repository repo = new Repository(repositoryPath))
{
foreach (Submodule submodule in repo.Submodules)
{
String subrepoPath = Path.Combine(repo.Info.WorkingDirectory, submodule.Path);
using (Repository subRepo = new Repository(subrepoPath))
{
Branch remoteBranch = subRepo.Branches["origin/master"];
subRepo.Reset(ResetMode.Hard, remoteBranch.Tip);
}
}
}
编辑:我刚刚意识到我错过了部分问题,要求签出一个特定的提交.为此,我们可以检查特定的哈希,而不是检查分支:
string commitHash = "517d9bdc49abf6fff00f4d5330245592e2e138b6";
Commit commit = subRepo.Lookup<Commit>(commitHash);
subRepo.Reset(ResetMode.Hard, commit);
标签:c,git-submodules,libgit2sharp 来源: https://codeday.me/bug/20190622/1264095.html