zoukankan      html  css  js  c++  java
  • git查询branch commit代码量以及提交数目

    由于自己写的一些项目都是在local 端,没有在github上,于是想怎么去获取我自己commit 提交多少次以及代码改动量。
    查询了一下资料,这里记录一下相关方法。

    • 1.根据用户名时间段统计

      git log --author="username" --since=2018-01-01 --until=2019-12-31 --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 }' 
      
    • 2.查看提交者排名前N位

      git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
      
    • 3.提交数统计

      git log --oneline | wc -l
      
    • 4.根据用户名统计

      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 }' 
      
    • 5.根据时间段统计

      git log --since=2020-01-01 --until=2021-02-04 --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 }'
      
    • 6.统计每个人的增删行数

      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
      
    • 7.贡献者统计

      git log --pretty='%aN' | sort -u | wc -l
      
    Knowledge, like candlelight, can illuminate a person and countless people.
  • 相关阅读:
    Intellij中的常用快捷键
    Intelij 中javax.servlet.http.HttpServlet包导不进来
    JDBC工具类与数据库建立连接
    Xms Xmx PermSize MaxPermSize 区别
    图书管理系统(SSH)
    DAO
    spring中的bean
    Intellij页面汉字乱码问题
    Dispatcher initialization failed
    用同一个类对不同表进行访问
  • 原文地址:https://www.cnblogs.com/xiaoqiangink/p/14633198.html
Copyright © 2011-2022 走看看