美文网首页
GIT 统计 绩效 KPI 使用

GIT 统计 绩效 KPI 使用

作者: 紅塵忘 | 来源:发表于2021-11-02 10:11 被阅读0次

    项目提交者 时间范围内 提交 代码量

    git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --since="2021-09-30" --before="2021-11-01" --author="$name" \
    --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "新增行数: %s, 移除行数: %s, 总行数: %s\n", add, subs, loc }' ; done
    

    项目提交者 时间范围内 提交数

    git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --oneline --since="2021-09-30" --before="2021-11-01" --author="$name"  | wc -l ; done
    

    项目总行数

    git log  --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 --oneline | wc -l
    

    参考:GIT统计代码量及IDEA Statistic统计解析

    相关文章

      网友评论

          本文标题:GIT 统计 绩效 KPI 使用

          本文链接:https://www.haomeiwen.com/subject/uhexzltx.html