I know what you mean. It's frustrating to have plentiful syntax for going to previous commits, but none to go to the next ones. In a complex history, the problem of "what is the next commit" becomes rather hard, but then in complex merging the same hardness emerges with 'previous' commits as well. In the simple case, inside a single branch with a linear history (even just locally for some limited number of commits) it would be nice and make sense to go forward and backward.
The real problem with this, however, is that the children commits are not referenced, it's a backwards-linked list only. Finding the child commit takes a search, which isn't too bad, but probably not something git wants to put into the refspec logic.
At any rate, I came upon this question because I simply want to step forward in the history one commit at a time, doing tests, and sometimes you have to step forward and not backward. Well, with some more thought I came up with this solution:
Pick a commit ahead of where you're at. This could probably be a branch head. If you're at branch~10, then "git checkout branch~9"
then "git checkout branch~8" to get the next after that,
then "git checkout branch~7" and so on.
Decrementing the number should be really easy in a script if you need it. A lot easier than parsing git rev-list.