To check out the parent commit, run
git checkout HEAD~1
This can be repeated ad nauseam, until you reach the first commit.
If you need to explore different parents leading up to a merge, use ^ instead:
git checkout HEAD^2
will check out the second parent of the current merge commit.
See “Specifying revisions” in the git-rev-parse documentation for details.