Merge pull request #437 from pmiossec/update_libgit2sharp

Update libgit2sharp to v0.14.0
This commit is contained in:
Sean M. Collins
2013-09-16 06:49:18 -07:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -361,8 +361,8 @@ namespace Sep.Git.Tfs.Core
public string GetCommitMessage(string head, string parentCommitish)
{
var message = new System.Text.StringBuilder();
foreach (LibGit2Sharp.Commit comm in
_repository.Commits.QueryBy(new LibGit2Sharp.Filter { Since = head, Until = parentCommitish }))
foreach (Commit comm in
_repository.Commits.QueryBy(new CommitFilter { Since = head, Until = parentCommitish }))
{
// Normalize commit message line endings to CR+LF style, so that message
// would be correctly shown in TFS commit dialog.