8000 Updated to newer pre-release of libgitsharp to see if that could fix … by mkoertgen · Pull Request #1024 · GitTools/GitVersion · GitHub
[go: up one dir, main page]

Skip to content

Updated to newer pre-release of libgitsharp to see if that could fix … #1024

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added noop implementations for updated libgitsharp
  • Loading branch information
mkoertgen committed Aug 26, 2016
commit c0065eee3c4d3307a96e6f63808e12f2b1d586b8
5 changes: 5 additions & 0 deletions src/GitVersionCore.Tests/Mocks/MockQueryableCommitLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public IEnumerable<LogEntry> QueryBy(string path, FollowFilter filter)
throw new NotImplementedException();
}

public IEnumerable<LogEntry> QueryBy(string path, CommitFilter filter)
{
throw new NotImplementedException();
}

public Commit FindMergeBase(Commit first, Commit second)
{
return null;
Expand Down
10 changes: 10 additions & 0 deletions src/GitVersionCore.Tests/Mocks/MockRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ public Branch Checkout(Commit commit, CheckoutOptions options)
throw new NotImplementedException();
}

public void Checkout(Tree tree, IEnumerable<string> paths, CheckoutOptions opts)
{
throw new NotImplementedException();
}

public void CheckoutPaths(string committishOrBranchSpec, IEnumerable<string> paths, CheckoutOptions checkoutOptions = null)
{
throw new NotImplementedException();
Expand Down Expand Up @@ -197,6 +202,11 @@ public string Describe(Commit commit, DescribeOptions options)
throw new NotImplementedException();
}

public void RevParse(string revision, out Reference reference, out GitObject obj)
{
throw new NotImplementedException();
}

public Branch Head { get; set; }
public Configuration Config { get; set; }
public Index Index { get; set; }
Expand Down
0