Files
git-tfs/GitTfs/Commands/QuickFetch.cs
T
2010-06-21 13:21:04 -04:00

17 lines
398 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();
}
}
}