Skip to content

Instantly share code, notes, and snippets.

@Natumsol
Created September 25, 2019 07:01
Show Gist options
  • Save Natumsol/373255a285925028da714be6aa2e3dd3 to your computer and use it in GitHub Desktop.
Save Natumsol/373255a285925028da714be6aa2e3dd3 to your computer and use it in GitHub Desktop.
Git 代码统计脚本
# 查看git上的个人代码量:
git log --author="username" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -
# 统计每个人增删行数
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done
# 查看仓库提交者排名前 5
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
#贡献值统计
git log --pretty='%aN' | sort -u | wc -l
# 提交数统计
git log --oneline | wc -l
# 添加或修改的代码行数:
git log --stat|perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/'
# 使用gitstats
git clone git://github.com/hoxu/gitstats.git
cd gitstats
./gitstats 你的项目的位置 生成统计的文件夹位置
# 使用cloc
npm install -g cloc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment