Files
git-tfs/GitTfs/Commands/QuickClone.cs
Philippe Miossec 7ef9fe888e Add a new list-remote-branches command
... to help find root TFS paths to clone
2013-01-16 18:00:00 +01:00

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)
{
}
}
}