public Task Fetch(IRepository repository, DeploymentInfo deploymentInfo, string targetBranch, ILogger logger)
 {
     repository.ClearLock();
     repository.FetchWithoutConflict(deploymentInfo.RepositoryUrl, targetBranch);
     return(_completed);
 }
 public Task Fetch(IRepository repository, DeploymentInfo deploymentInfo, string targetBranch, ILogger logger)
 {
     repository.ClearLock();
     repository.FetchWithoutConflict(deploymentInfo.RepositoryUrl, targetBranch);
     return TaskHelpers.Completed();
 }
Exemple #3
0
 public Task Fetch(IRepository repository, DeploymentInfo deploymentInfo, string targetBranch, ILogger logger)
 {
     repository.FetchWithoutConflict(deploymentInfo.RepositoryUrl, targetBranch);
     return _completed;
 }
 public void Fetch(IRepository repository, DeploymentInfo deploymentInfo, string targetBranch, ILogger logger)
 {
     repository.ClearLock();
     repository.FetchWithoutConflict(deploymentInfo.RepositoryUrl, targetBranch);
 }
 public void Fetch(IRepository repository, DeploymentInfo deploymentInfo, string targetBranch)
 {
     repository.FetchWithoutConflict(deploymentInfo.RepositoryUrl, "external", targetBranch);
 }