You can count the number of commits between two commits these way:
git log ac93d4bda9..77fadbdd0d4 --pretty=oneline | wc -l
It is very useful when you want to know number of commits between to package releases.
Source: https://stackoverflow.com/questions/31997999/number-of-commits-between-two-commitishes