Files
git-tfs/GitTfs/Core/GitTfs.cs
T
2009-06-29 09:09:43 -04:00

12 lines
227 B
C#

namespace Sep.Git.Tfs.Commands
{
public class GitTfs // TODO: extract IGitTfs
{
public void FetchAll(string remoteId)
{
var remote = FindRemote(remoteId);
//...
}
}
}