コード例 #1
0
        /// <summary>Download new objects from remote repository and merge tracking branches.</summary>
        public void Pull()
        {
            Verify.State.IsNotDeleted(this);

            RemotesUtility.FetchOrPull(Repository, this, true);
        }
コード例 #2
0
ファイル: RemotesCollection.cs プロジェクト: oqewok/gitter
        public void Pull()
        {
            Verify.State.IsTrue(Count != 0, "Repository contains no remotes.");

            RemotesUtility.FetchOrPull(Repository, null, true);
        }