sh 一个shell脚本,可以帮助您计算特定人员的贡献

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 一个shell脚本,可以帮助您计算特定人员的贡献相关的知识,希望对你有一定的参考价值。

#!/bin/sh

if [ "$#" -ne 1 ]; then
  echo "Usage: $0 Author-Name"
  exit 1
fi

echo Total Commit: $(git log --author=$1 --pretty=tformat: --oneline | wc -l)

git log --author=$1 --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 }'

以上是关于sh 一个shell脚本,可以帮助您计算特定人员的贡献的主要内容,如果未能解决你的问题,请参考以下文章

linux的shell编程中#!/bin/sh和$bash是啥意思?

用shell写一个简易计算器,可以实现加减乘除运算,假如脚本名字为1.sh,执行示例:./1.

sh 一个片段,可以帮助您在rc脚本中找到“source”的时间成本

shell脚本基础命令学习

帮助基本的 shell 脚本。 /bin/sh:来源:未找到

如何为具有特定 ip 的打开浏览器创建 shell 脚本?