I know that e.g. with
git shortlog -sn --since=3.months <branch>
I can get the commits done in the last 3 months on <branch>
counted from now. But how can I make the 3.months
count from the date of the last commit on <branch>
instead? Is there a syntax for this to work in a single command, or would it require multiple git
invocations?