Beispiel #1
0
 public async Task DeleteBranchAsync(string repoUri, string branch)
 {
     using (_logger.BeginScope($"Deleting branch '{branch}' from repo '{repoUri}'"))
     {
         await _gitClient.DeleteBranchAsync(repoUri, branch);
     }
 }