Files
git-tfs/GitTfs/Commands/QuickFetch.cs
T
2011-01-27 16:40:32 -05:00

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