diff options
| -rw-r--r-- | lib/oxidized/output/git.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lib/oxidized/output/git.rb b/lib/oxidized/output/git.rb index b1212f1..81be162 100644 --- a/lib/oxidized/output/git.rb +++ b/lib/oxidized/output/git.rb @@ -80,6 +80,8 @@ class Git < Output              hash = {}              hash[:date] = commit.time.to_s               hash[:oid] = commit.oid +            hash[:author] = commit.author +            hash[:message] = commit.message              tab[i += 1] = hash            end          end @@ -185,4 +187,4 @@ class Git < Output      end    end  end -end
\ No newline at end of file +end | 
