added november to the list of months

This commit is contained in:
Dustin Blomquist 2017-02-18 01:08:10 -06:00
parent 1f1b281b6f
commit 27f0857b77

View file

@ -127,7 +127,7 @@ function suggestReviewers() {
function commitsByMonth() {
option_picked "Git commits by month:"
echo -e "\tmonth\tsum"
for i in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Dec
for i in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
do
echo -en "\t$i\t"
echo $(git shortlog -n --no-merges --format='%ad %s' $_since $_until | grep " $i " | wc -l)