Esempio n. 1
0
        } // End Sub Fetch

        public virtual void Pull(string path)
        {
            NGit.Api.Git repository = NGit.Api.Git.Open(path);

            // Pull changes (will automatically merge/commit them)
            NGit.Api.PullResult pull = repository.Pull().Call();

            CloseRepository(repository);
        } // End Sub Pull