git常用命令

in 笔记 with 0 comment
git log --author="zengchenwei"  --since="2020/09/01" --until="2020/09/03"  --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 }'