脚本统计Git项目代码量

来源:互联网 发布:windows截屏 编辑:程序博客网 时间:2024/05/19 12:39

此脚本统计的为代码行数。

编写脚本CountCodeNum.sh

#!/bin/bashfunction count() {    local insert=0    local delete=0    while read line ;do        current=`echo $line| awk -F',' '{printf $2}' | awk '{printf $1}'`        if [[ -n $current ]]; then             insert=`expr $insert + $current`        fi        current=`echo $line | sed -n 's/.*, //p' | awk '{printf $1}'`        if [[ -n $current ]]; then            delete=`expr $delete + $current`        fi    done < .tmp.count    echo "$insert insertions, $delete deletions"}function countAll() {    git log --author=xxxxxx --shortstat --pretty=format:"" | sed /^$/d >.tmp.count    count;    rm .tmp.count}function countToday() {    local current=`date +%s`;    local begin=`date +%Y-%m-%d |xargs date +%s -d`;    local minutes=$(($current - $begin));    git log --author=xxxxxx --since="$minutes seconds ago" --shortstat --pretty=format:"" | sed /^$/d >.tmp.count    count;    rm .tmp.count}function countOneDay() {    git log --author=xxxxxx--since="1 days ago" --shortstat --pretty=format:"" | sed /^$/d >.tmp.count    count;    rm .tmp.count}if [[ ! -n $1 ]] || [[ $1 = "all" ]] ; then     countAll;elif [[ $1 = "oneday" ]]; then    countOneDay;elif [[ $1 = "today" ]]; then    countToday;else    echo "args: all | oneday | today";fi

需要将上面的 –author=xxxxxx 等号后面的内容替换为自己Git配置的名字。

运行脚本

将脚本拷贝到项目文件夹下。

当天代码统计

$ ./CountCodeNum.sh today292 insertions, 13 deletions

最近一天代码统计

$ ./CountCodeNum.sh oneday485 insertions, 178 deletions

整个项目代码统计

./CountCodeNum.sh all 12485 insertions, 278 deletions
原创粉丝点击