2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitで直近のコミットした行数をカウントする

Last updated at Posted at 2019-10-02

背景

今日一日の作業実績を確認したり、自分のモチベーションアップのためにサクッとgitでcommitした行数を確認したかった!

方法

以下コマンド実行

git log --numstat --pretty="%H" -1 --no-merges | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("%d (+%d, -%d)\n", plus+minus, plus, minus)}'

-1は行数チェックの対象コミット数を示しています。
なので直近の3つのコミットを対象としたい場合は-3としてください。

結果

上記コマンドを実行すると以下のような出力が得られる。
左から、合計行数と+追加行数、-削除行数が表示される。

$ git log --numstat --pretty="%H" -1 --no-merges | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("%d (+%d, -%d)\n", plus+minus, plus, minus)}'
675 (+507, -168)

その他

ライブラリなど除外したいファイルがある場合は以下のようにすると良さそう。

方法としては以下

git log --numstat  --pretty="%H" -1 --format=%s -- . ":(exclude)postgres"

上記は例で「postgres」のディレクトリが除外設定されている。

--format=%s -- . ":(exclude)postgres"

上記の部分でpostgresのディレクトリを除外している


複数のディレクトリを指定する場合はつなげて以下のようにすると良さげ

git log --numstat  --pretty="%H" -1 --format=%s -- . ":(exclude)postgres" --format=%s -- . ":(exclude)golang/github.com"

参考にしたURL

Thanks!

altさん、タグ修正ありがとうございます…!

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?