日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

git統計當前項目代碼行數

作者:沉、睡 更新時間: 2022-01-31 編程語言

git統計當前項目代碼行數

在項目根目錄輸入以下代碼

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat --after="2021-04-01 00:00:00" --before="2021-04-30 00:00:00" | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done

原文鏈接:https://blog.csdn.net/zz975896590/article/details/119991177

欄目分類
最近更新