7ef9fe888e
... to help find root TFS paths to clone
17 lines
456 B
C#
17 lines
456 B
C#
using System.ComponentModel;
|
|
using System.IO;
|
|
using StructureMap;
|
|
|
|
namespace Sep.Git.Tfs.Commands
|
|
{
|
|
[Pluggable("quick-clone")]
|
|
[Description("quick-clone [options] tfs-url-or-instance-name repository-path <git-repository-path>")]
|
|
public class QuickClone : Clone
|
|
{
|
|
public QuickClone(Globals globals, Init init, QuickFetch fetch, TextWriter stdout)
|
|
: base(globals, fetch, init, null, stdout)
|
|
{
|
|
}
|
|
}
|
|
}
|