16 lines
300 B
C#
16 lines
300 B
C#
using LibGit2Sharp;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface IGitTreeModifier
|
|
{
|
|
void Add(string path, string file, LibGit2Sharp.Mode mode);
|
|
void Remove(string path);
|
|
}
|
|
|
|
public interface IGitTreeBuilder : IGitTreeModifier
|
|
{
|
|
Tree GetTree();
|
|
}
|
|
}
|