# File lib/git-review/local.rb, line 238
    def merged?(sha)
      branches = git_call("branch --contains #{sha} 2>&1").split("\n").
          collect { |b| b.delete('*').strip }
      branches.include?(target_branch)
    end