Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

Git blame get users most edited file

#!/bin/bash

# save as i.e.: git-authors and set the executable flag
git ls-tree -r -z --name-only HEAD -- $1 | xargs -0 -n1 git blame 
 --line-porcelain HEAD |grep  "^author "|sort|uniq -c|sort -nr
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Git #blame #users #edited #file
ADD COMMENT
Topic
Name
4+1 =