对于git的小技巧使用。

记录一些在工作中遇到的git 的小技巧

#查看 俩个tag 之间 提交多少commit 的 comments
git log  0.1.23..0.1.26  --oneline --decorate  

#查看commit 有指定的 代码 修改 删除 行数 (
git log --grep='xxxx' --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }'