Remix.run Logo
heresie-dabord 4 hours ago

For this command in particular, one can add a cheap bar chart with awk:

git log --format='%ad' --date=format:'%Y-%m' | sort | uniq -c | awk '{printf $2" "; for (i=1;i<=$1;i++){printf "-";} print ""; }'

zikani_03 an hour ago | parent [-]

This is a neat trick for a quick visual presentation, thanks!