15 lines
391 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|