10 lines
242 B
C#
10 lines
242 B
C#
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public interface ITfsChangeset
|
|
{
|
|
TfsChangesetInfo Summary { get; }
|
|
LogEntry Apply(string lastCommit, GitIndexInfo index);
|
|
LogEntry CopyTree(GitIndexInfo index);
|
|
}
|
|
}
|