Disable and delete post revisions

Add the following code to your wp-config.php file

define('AUTOSAVE_INTERVAL', 300 ); // seconds
define('WP_POST_REVISIONS', false );

Then delete the existing posts marked as revisions in the MySql database with the following SQL command

DELETE FROM wp_posts WHERE post_type = "revision";