basyura's blog

あしたになったらほんきだす。

git のログをパースしてゴニョゴニョしたいとき

Ruby で。

ENV['GIT_PAGER'] = ''
IO.popen('git log') do |io|
  while line = io.gets
    puts line
  end
end