My 2¢ is to recommend keeping it, as a required step. [Optional if need be, but I'd default it on]
I've used version control for many years - both for professional and hobby development. Much of the 'history' may go unreviewed, but then you may find it important to walk backin time, and here this is very helpful. I don't think I'm alone in this.
Those that have not used version control before may end up typing 'asdf' to satisfy the check-in requirement. Those same folks will sooner or later find themselves not with a 50 line program but with 10 to 50 modules of hundreds to thousands of lines of code. Patching a bad run of code over and over usually makes it even more hacked up and hard to maintain. Much better is to recognize the bad path one is on and then deliberately back up to a good revision to start again. Having reasonably good comments in the history will help find that good version to branch from without having to diff the files over and over. It takes some discipline to actually throw away bad code rather than trying to get it to submit to your will to make it good. I still find myself going too far down the bad path, but I know I can back up gracefully.
It's a little obnoxious and distracting, while slowing the process..