Answers for "git percentage of authorship"

0

git percentage of authorship

git ls-tree -r HEAD|sed -re 's/^.{53}//'|while read filename; do file "$filename"; done|grep -E ': .*text'|sed -r -e 's/: .*//'|while read filename; do git blame -w "$filename"; done|sed -r -e 's/.*\((.*)[0-9]{4}-[0-9]{2}-[0-9]{2} .*/\1/' -e 's/ +$//'|sort|uniq -c
Posted by: Guest on September-29-2021

Code answers related to "git percentage of authorship"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language