# File lib/branch.rb, line 411 def delete(opts) rep = GitMaintain::confirm(opts, "delete branch #{@local_branch}") if rep == "y" then @repo.runGit("branch -D #{@local_branch}") else log(:INFO, "Skipping deletion") return end end