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.
  • 相关阅读:
    纪念一下なぞなぞゲーム
    071221 晴
    Sightseeing Cows poj3621
    【HDU 5721】Palace(平面最近点对)
    继承和多态的一些知识点
    3D Convex Hull HDU 3662 三维凸包
    Monthly Expense POJ 3273 二分
    确定比赛名次 HDU 1285拓扑排序裸题
    序列变换
    Dropping tests 二分+01分数规划
  • 原文地址:https://www.cnblogs.com/xiaoqiangink/p/14633198.html
Copyright © 2011-2022 走看看