zoukankan      html  css  js  c++  java
  • git命令的代码统计方法

    1.统计所有人代码量

    统计所有人代码增删量,拷贝如下命令,直接在git bash等终端,git项目某分支下执行

    git log --format='%aN' | sort -u | while read name; do echo -en "$name	"; 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
    ", add, subs, loc }' -; done
    

    2.统计指定提交者代码量

    统计单个提交者代码量,将下面的--author="username" 中的 username 替换成具体的提交者,然后执行

    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
    ", add, subs, loc }' -
  • 相关阅读:
    提高写作能力
    成长,潜力
    线性代数
    健康的作息时间
    2021-01-06TX技术经验总结.
    Redis的技术总结
    Rocket MQ 原理.
    MBA
    向上管理
    postman怎么打开console控制台,打印console.log
  • 原文地址:https://www.cnblogs.com/gsqc/p/9250313.html
Copyright © 2011-2022 走看看