zoukankan      html  css  js  c++  java
  • git工作量统计

    #!/bin/bash
    function 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=wxy --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=wxy --since="$minutes seconds ago" --shortstat --pretty=format:"" | sed /^$/d >.tmp.count
        count;
        rm .tmp.count
    
    }
    
    function countOneDay() {
        git log --author=wxy --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
    
    git log --graph  --date=yyyymmdd --pretty=format:'%ae%cd%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
    git log --graph  --date=yyyymmdd --pretty=format:'%ae%cd%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
    git log --pretty=format:'%ci %an %s' > work.txt
  • 相关阅读:
    分段路由的复兴
    动态维护FDB表项实现VXLAN通信
    neutron dhcp 高可用
    wpf
    从0到1设计一台8bit计算机
    哇塞的Docker——vscode远程连接Docker容器进行项目开发(三)
    中通消息平台 Kafka 顺序消费线程模型的实践与优化
    飞机大战 python小项目
    看透确定性,抛弃确定性
    如何根据普通ip地址获取当前地理位置
  • 原文地址:https://www.cnblogs.com/shiningrise/p/3729100.html
Copyright © 2011-2022 走看看