Skip to content

Instantly share code, notes, and snippets.

@mrfratello
Last active June 19, 2018 19:30
Show Gist options
  • Save mrfratello/282d0d90d6231a20c750665acce5f6d7 to your computer and use it in GitHub Desktop.
Save mrfratello/282d0d90d6231a20c750665acce5f6d7 to your computer and use it in GitHub Desktop.
Statistics by author in SCM Mercurial
# Статистика количество коммитов у каждого автора
hg log --template "{author|person}\n" | sort | uniq -c | sort -nr
hg churn -c
# Статистика по затронотым строкам каждым авторам за все время
hg churn --diffstat
# Статистика по комитам каждого файла
hg diff -r 0 -r tip --stat
# Статистика по количеству строк у каждого автора в текущей (итоговой) ревизии
hg blame -u * | cut -d':' -f1 | grep -v '/' | tr -d ' ' | sort | uniq -c | sort -nr
hg blame -u * | sed 's/:.*//' | grep -v '/' | tr -d ' ' | sort | uniq -c | sort -nr
# Для ANSI символов:
hg blame -u * | iconv -f ASCII --byte-subst='\x{%02x}' | cut -d':' -f1 | grep -v '/' | tr -d ' ' | sort | uniq -c | sort -nr
hg blame -u * | iconv -f ASCII --byte-subst='\x{%02x}' | sed 's/:.*//' | grep -v '/' | tr -d ' ' | sort | uniq -c | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment