예제 #1
0
 public static Repository Clone(CloneCommand command)
 {
     command.Execute();
     return command.Repository;
 }
예제 #2
0
파일: Commands.cs 프로젝트: dasch/GitSharp
 public static void Clone(string fromUrl, DirectoryInfo toPath, bool isQuiet)
 {
     CloneCommand cmd = new CloneCommand();
     if (cmd != null)
     {
         cmd.Path = fromUrl;
         cmd.Directory = toPath.FullName;
         cmd.Quiet = isQuiet;
         cmd.Execute();
     }
 }
예제 #3
0
 public static void Clone(CloneCommand command)
 {
     command.Execute();
 }