从LibGit2Sharp中的提交中获取修改/添加/删除的文件

我有这种方法,我从上次提交中获取文件:

static void GetFiles(Tree t, String dir = "")
{
    foreach (TreeEntry treeEntry in t)
    {
        if (treeEntry.TargetType == TreeEntryTargetType.Tree)
        {
            Tree tr = repo.Lookup<Tree>(treeEntry.Target.Sha);
            GetFiles(tr, dir + "/" + treeEntry.Name);
        }
        else
        {
            string caminho = dir + "/" + treeEntry.Path;
            arquivos.Add(caminho);
        }

    }
    return;
}

我看了一下这个问题,但我是C#的新手,不明白。

我有这个存储库:

c:/teste
| - octocat.txt
| - parentoctocat.txt
| - /outros
| | - octocatblue.txt
| | - octored.txt

我上次提交修改了这些文件:

c:/teste
| - /outros
| | - octocatblue.txt <- This modified
| | - octored.txt <- This new

用我的方法GetFiles我有这个打印中的所有文件。 如何只获取修改/添加/删除的文件?

程序执行


我如何获得以前的提交并比较获取差异树?


static void CompareTrees()
{
    using (repo)
    {
        Tree commitTree = repo.Head.Tip.Tree; // Main Tree
        Tree parentCommitTree = repo.Head.Tip.Parents.Single().Tree; // Secondary Tree

        var patch = repo.Diff.Compare<Patch>(parentCommitTree, commitTree); // Difference

        foreach (var ptc in patch)
        {
            Console.WriteLine(ptc.Status +" -> "+ptc.Path); // Status -> File Path
        }
    }
}

解


由于git在文件系统中存储数据的方式,git commit是提交中包含的所有文件的快照。 然后Tree对象返回存储库所有文件的状态。

我认为你必须在这个提交的树和前一个树的树之间做差异,我认为它应该用Repository.Diff.Compare()方法完成。

链接地址: http://www.djcxy.com/p/85187.html

上一篇: Get files modified/added/removed from a commit in LibGit2Sharp

下一篇: Roman Numeral to integer function