Gitk has a good habit of showing me Tags :, Follows: and Precedes: for commit. How to get the same information from the command line?
To show the commit tag:
$ git describe --tags <commit>
To show the previous commit:
$ git rev-list -1 <commit>^
To display the following commit:
$ git rev-list -1 <commit>..HEAD
To show tags that contain a commit (i.e. tags precede a commit):
git tag --contains <commit>