git c#, clone方法_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > git c#, clone方法

git c#, clone方法

 2014/6/22 20:46:12  javasuki  程序员俱乐部  我要评论(0)
  • 摘要:privatestaticvoidclone(){stringwkDir=@"E:\DotNet2010\单位工程\Git.Client\lib2Test\ConsoleApplication1\bin\Debug\D2Git";stringurl="http://localhost/git/test.git";CloneOptionsco=newCloneOptions{CredentialsProvider=(x,y,z)=>
  • 标签:C# 方法
class="brush:csharp;gutter:true;">private static void clone()
        {
            string wkDir = @"E:\DotNet2010\单位工程\Git.Client\lib2Test\ConsoleApplication1\bin\Debug\D2Git";
            string url = "http://localhost/git/test.git";
            CloneOptions co = new CloneOptions
            {
                CredentialsProvider = (x,y,z) => new UsernamePasswordCredentials { Username="admin", Password="admin"}
            };
            Repository.Clone(url, wkDir, co);
        }

鄙视csdn的保存速度,园子速度超快!

发表评论
用户名: 匿名