コード例 #1
0
ファイル: HgScmProvider.cs プロジェクト: hemisphera/Eos.SCM
        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();
 }