12 lines
227 B
C#
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);
|
|
//...
|
|
}
|
|
}
|
|
}
|