Compare commits

..

2 Commits
1.0.1 ... 1.0.2

Author SHA1 Message Date
Lukáš Mešťan
6d0e1aa692 Merge pull request #22 from xdlbx/add-november
added november to the list of months, thanks @xdlbx
2017-02-18 11:39:37 +01:00
Dustin Blomquist
27f0857b77 added november to the list of months 2017-02-18 01:08:10 -06:00

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)