Пример #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
        public void Pull()
        {
            Verify.State.IsTrue(Count != 0, "Repository contains no remotes.");

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