LibGit2Sharp 在拉取后查找 updated/added/deleted 的文件

LibGit2Sharp Find what files were updated/added/deleted after pull

在 运行 一个 repo.Network.Pull() 命令之后,我希望能够看到哪些文件被添加到存储库中,在存储库中被更改,以及从存储库中删除。我只需要文件的文件路径以及它是 add/update 还是删除。

有没有简单的方法来做到这一点?我已经尝试研究 Diff.Compare() 但我不确定这是否是正确的方法。

LibGit2Sharp 0.21.0.176

这是一个 libGit2 示例,它遍历当前的提交树并获取更改的文件和更改的类型。

Git版本:

git log --name-status --pretty=oneline

1d9d4bb881f97f5d3b67741a893f238e7221e2b1 Updated readme with fork info
M       README.md
58cc5c41963d5ff68556476158c9c0c2499e061c Update Makefile for PE32+ (platform:x64) assemblies
M       Makefile
M       README.md
a7823c1c0a737c5218d33691f98828c78d52130b Fix Makefile for 64-bit native lib and add README.md
M       Makefile
A       README.md
ea7e6722f67569cb9d7a433ff2c036fc630d8561 Update solution files.
M       mono-curses.csproj
M       mono-curses.sln
05dbe6e18895d1037ce333b0a1f652eeae3f8b33 Fix resize handling.
M       attrib.c
M       gui.cs

libGit2 版本:

    var repo = new LibGit2Sharp.Repository ("/your/repo/path");
    foreach (Commit commit in repo.Commits) {
        foreach (var parent in commit.Parents) {
            Console.WriteLine ("{0} | {1}", commit.Sha, commit.MessageShort);
            foreach (TreeEntryChanges change in repo.Diff.Compare<TreeChanges>(parent.Tree,
            commit.Tree)) {
                Console.WriteLine ("{0} : {1}", change.Status, change.Path);
            }
        }
    }

输出:

1d9d4bb881f97f5d3b67741a893f238e7221e2b1 | Updated readme with fork info
Modified : README.md
58cc5c41963d5ff68556476158c9c0c2499e061c | Update Makefile for PE32+ (platform:x64) assemblies
Modified : Makefile
Modified : README.md
a7823c1c0a737c5218d33691f98828c78d52130b | Fix Makefile for 64-bit native lib and add README.md
Modified : Makefile
Added : README.md
ea7e6722f67569cb9d7a433ff2c036fc630d8561 | Update solution files.
Modified : mono-curses.csproj
Modified : mono-curses.sln
05dbe6e18895d1037ce333b0a1f652eeae3f8b33 | Fix resize handling.
Modified : attrib.c
Modified : gui.cs

在直接回答您的问题时,只需从 Commits 枚举器中获取第一个提交并将其树与其父级(由于合并可能有多个父级)与我循环所有提交的示例进行比较当前分支。