less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

5 行
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