Files
git-tfs/GitTfs/Core/IGitRepository.cs
T
2009-07-10 06:35:04 -04:00

15 lines
372 B
C#

using System;
using System.Collections.Generic;
using System.IO;
namespace Sep.Git.Tfs.Core
{
public interface IGitRepository : IGitHelpers
{
IEnumerable<GitTfsRemote> ReadAllTfsRemotes();
GitTfsRemote ReadTfsRemote(string remoteId);
string HashAndInsertObject(string filename);
string HashAndInsertObject(Stream data);
}
}