79747564

Date: 2025-08-27 05:31:24
Score: 1
Natty:
Report link
git log --pretty=format:%aE | sort | uniq | while read email; do
  echo "Author: $email"
  git log --author="$email" --pretty=tformat: --numstat | awk '{add+=$1; del+=$2} END {printf "Added: %d, Deleted: %d\n\n", add, del}'
done
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mehmet Yağız Maktav