#!/usr/bin/env bash
## 
## Source: git-extra-commands

#
# Another one I need just often enough to be annoying, but not enough
# to actually remember when I do need it.
#
# Get the number of commits on the current branch

exec git rev-list HEAD --count
