コード例 #1
0
ファイル: Remote.cs プロジェクト: theaoqi/arcade-services
 public async Task DeleteBranchAsync(string repoUri, string branch)
 {
     using (_logger.BeginScope($"Deleting branch '{branch}' from repo '{repoUri}'"))
     {
         await _gitClient.DeleteBranchAsync(repoUri, branch);
     }
 }