Exemplo n.º 1
0
 public JsonResult Branches(string name, string path)
 {
     using (var git = new GitService(GitService.GetDirectoryInfo(name).FullName))
     {
         git.DeleteBranch(path);
         return Json("success");
     }
 }