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

15 lines
391 B
C#

using System.ComponentModel;
using StructureMap;
namespace Sep.Git.Tfs.Commands
{
[Pluggable("quick-clone")]
[Description("quick-clone [options] tfs-url repository-path <git-repository-path>")]
public class QuickClone : Clone
{
public QuickClone(Globals globals, Init init, QuickFetch fetch) : base(globals, fetch, init)
{
}
}
}