Skip to content

Instantly share code, notes, and snippets.

@donnior
Last active January 24, 2019 06:54
Show Gist options
  • Save donnior/25ec2ccfef4a739a5f6b4c3f934169f6 to your computer and use it in GitHub Desktop.
Save donnior/25ec2ccfef4a739a5f6b4c3f934169f6 to your computer and use it in GitHub Desktop.

Revisions

  1. donnior renamed this gist Jan 24, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. donnior created this gist Jan 24, 2019.
    18 changes: 18 additions & 0 deletions git_code_count
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@

    ## 统计每个人增删行数

    ```
    git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --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 }' -; done
    ```

    ## 添加或修改的代码行数

    ```
    git log --stat|perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/'
    ```

    ## 查看个人代码量

    ```
    git log --author="username" --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 }' -
    ```