标签:tty 提交 mst 提交代码 author $2 pre -- ret
# a新增行数,d删除行数
git log --author="`git config --get user.name`" --pretty="%H" --after="2019-01-01" --numstat | awk ‘NF==3 {a+=$1; d+=$2} END {printf("+%d, -%d\n", a, d)}‘
标签:tty 提交 mst 提交代码 author $2 pre -- ret
原文地址:https://www.cnblogs.com/276815076/p/12074709.html