示例#1
0
        public void CloneRepository(ICloneRepositoryArgs args)
        {
            var ab = new ArgBuilder();

            ab.Add("clone");
            ab.Add(args.Source.Enclose('"'));
            ab.Add(args.RepositoryPath.Enclose('"'));
            RunCommand(ab, args);
        }
示例#2
0
 public void CloneRepository(ICloneRepositoryArgs args)
 {
     throw new NotImplementedException();
 }