美文网首页
git常用命令

git常用命令

作者: fanderboy | 来源:发表于2021-03-31 16:34 被阅读0次

统计代码命令:

git log  --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 }'

相关文章

网友评论

      本文标题:git常用命令

      本文链接:https://www.haomeiwen.com/subject/bmcahltx.html