当前位置:   article > 正文

【git】获取每个用户的提交次数_git 获取commit次数

git 获取commit次数
#!/bin/bash

rm -f ~/git-c.log
cd 路径/repositories

# 获取所有的仓库
for dir in $(ls ./)
do
    cd $dir
    # 获取子目录
    for dir1 in $(ls ./)
    do
        [ -d $dir1 ] && echo $dir1
        cd $dir1
        git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r  >> ~/git-c.log
        cd ../
    done
    cd ../
done

echo '================'  >> ~/git-c.log

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/578465
推荐阅读
  

闽ICP备14008679号