# File lib/rubocop/git/commit.rb, line 11
      def file_content(filename)
        if @options.cached
          `git show :#{filename.shellescape}`
        elsif @options.commit_last
          `git show #{@options.commit_last.shellescape}:#{filename.shellescape}`
        else
          File.read(filename)
        end
      end