10000 Update binaries to 69db893 · gitextensions/libgit2sharp@e0a15ae · GitHub
[go: up one dir, main page]

Skip to content

Commit e0a15ae

Browse files
committed
Update binaries to 69db893
libgit2/libgit2@091165c...69db893
1 parent cf8c5fb commit e0a15ae

20 files changed

+32
-14
lines changed
-2.41 MB
Binary file not shown.
-5.74 MB
Binary file not shown.
920 KB
Binary file not shown.
5.29 MB
Binary file not shown.
-1.72 MB
Binary file not shown.
-5.9 MB
Binary file not shown.
702 KB
Binary file not shown.
5.29 MB
Binary file not shown.

LibGit2Sharp.Tests/StatusFixture.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,8 @@ public void RetrievingTheStatusOfTheRepositoryHonorsTheGitIgnoreDirectivesThroug
495495
Assert.Equal(FileStatus.Ignored, repo.Index.RetrieveStatus("bin/look-ma.txt"));
496496
Assert.Equal(FileStatus.Untracked, repo.Index.RetrieveStatus("bin/what-about-me.txt"));
497497

498-
// bin/* is considered as ignoring the dir itself
499498
newStatus = repo.Index.RetrieveStatus();
500-
Assert.Equal(new[] { "bin" + dirSep }, newStatus.Ignored.Select(s => s.FilePath));
501499

502-
// if we recurse into ignored dirs, then we get the actual list
503-
newStatus = repo.Index.RetrieveStatus(new StatusOptions { RecurseIgnoredDirs = true });
504500
Assert.Equal(new[] { "bin" + dirSep + "look-ma.txt" }, newStatus.Ignored.Select(s => s.FilePath));
505501
Assert.True(newStatus.Untracked.Select(s => s.FilePath).Contains("bin" + dirSep + "what-about-me.txt"));
506502
}

LibGit2Sharp/ChangeKind.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,10 @@ public enum ChangeKind
5050
/// of the file was changed.
5151
/// </summary>
5252
TypeChanged = 8,
53+
54+
/// <summary>
55+
/// Entry is unreadable.
56+
/// </summary>
57+
Unreadable = 9,
5358
}
5459
}

0 commit comments

Comments
 (0)
0