git for c#, commit本地,pushserver

//ok
        private static void push()
        {
            string wkDir = @"E:\DotNet2010\单位project\Git.Client\lib2Test\ConsoleApplication1\bin\Debug\D2Git\.git";
            using (var repo = new Repository(wkDir))
            {

                //此时必须保证存在 one.txt,two.txt 两个文件
                string fname = "one.txt";
                repo.Index.Stage(fname);
                repo.Commit("add one", Constants.Signature, Constants.Signature);


                fname = "two.txt";
                repo.Index.Stage(fname);
                repo.Commit("add two", Constants.Signature, Constants.Signature);

                var nk = repo.Network;
                PushOptions po = new PushOptions
                {
                    CredentialsProvider = (x, y, z) => new UsernamePasswordCredentials { Username = "admin", Password = "admin" }
                };
                nk.Push(repo.Head, po);
                nk.Push(repo.Branches["master"], po);

            }
        }


    public static class Constants
    {
        public static readonly Signature Signature = new Signature("javasuki", "javasuki@hotmail.com", new DateTimeOffset(2014, 06, 22, 10, 58, 27, TimeSpan.FromHours(2)));
    }


posted on 2017-04-14 18:25  blfbuaa  阅读(196)  评论(0编辑  收藏  举报