branch_exists?

in git_helper.rb [31:37]


  def branch_exists?(branch_name)
    @git_client.branch(@repo_name, branch_name)
    true
  rescue Octokit::NotFound
    false
  end