This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gitへ変更した行数をカウントするスクリプト | |
# | |
# example: | |
# git log --since=2014-11-01 --committer=manhole --shortstat --ignore-all-space --no-merges | ruby git_count_changes.rb | |
# => commits=175, insertions=10350, deletions=1253 | |
# 各行の形式は... | |
# 10 files changed, 210 insertions(+), 19 deletions(-) | |
# 1 file changed, 5 insertions(+) | |
# 1 file changed, 50 deletions(-) |