i tried the below command in git to get cloc difference between two commits using commit ids and i got the result in beautiful table.
cloc --git --diff <commit id1> <commit id2>
But i need a CLOC difference between commits but instead of using commit ids i need to use dates as a parameter to get the result.
Use
git rev-listto get the commit SHAs you want for a particular date range.For example, suppose you want to use the date range Jan 20, 2021 to Feb 20, 2021
Using this, you can plug
$start_commitand$end_commitinto yourcloccommand: