17 lines
382 B
C#
17 lines
382 B
C#
using Sep.Git.Tfs.Core;
|
|
|
|
namespace Sep.Git.Tfs.Commands
|
|
{
|
|
public class QuickFetch : Fetch
|
|
{
|
|
public QuickFetch(Globals globals, RemoteOptions remoteOptions, FcOptions fcOptions) : base(globals, remoteOptions, fcOptions)
|
|
{
|
|
}
|
|
|
|
protected override void DoFetch(IGitTfsRemote remote)
|
|
{
|
|
remote.QuickFetch();
|
|
}
|
|
}
|
|
}
|