Cole isso em seu terminal:
history|grep git| awk '{CMD[$3]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n10
Aumente -n para ver mais comandos.
Resultado de exemplo (meu):
1 385 8.68095% log
2 318 7.17024% co
3 309 6.96731% commit
4 307 6.92221% show
5 254 5.72717% push
6 231 5.20857% add
7 151 3.40474% branch
8 140 3.15671% tag
9 113 2.54791% reset
10 112 2.52537% clone
Fonte / adaptado de http://superuser.com/a/250230/94027