# File lib/gitlab_git/commit.rb, line 17
      def ==(other)
        return false unless other.is_a?(Gitlab::Git::Commit)

        methods = [:message, :parent_ids, :authored_date, :author_name,
                   :author_email, :committed_date, :committer_name,
                   :committer_email]

        methods.all? do |method|
          send(method) == other.send(method)
        end
      end