Exemplo n.º 1
0
		public ICommandResponse Pull (string path, string destPath)
		{
			var git = new Git(new FileRepository(ToGitDirString(path)));
			var pullCommand = git.Pull();
			ICommandResponse result = new NGitPullResultAdapter(pullCommand);
			return result;
		}
Exemplo n.º 2
0
        public ICommandResponse Pull(string path, string destPath)
        {
            var git                 = new Git(new FileRepository(ToGitDirString(path)));
            var pullCommand         = git.Pull();
            ICommandResponse result = new NGitPullResultAdapter(pullCommand);

            return(result);
        }