less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

5 lines
211 B

  1. for commit in $(git log --pretty="format:%h"); do
  2. git show -s --format="%cd" --date=short $commit | tr -d "\n" >> svgs.csv
  3. echo -n , >> svgs.csv
  4. expr $(git ls-tree -r $commit ../media/ | wc -l) >> svgs.csv
  5. done