|
|
@@ -259,7 +259,8 @@ class GitDataCollector(DataCollector):
|
|
259
|
259
|
# N files changed, N insertions (+), N deletions(-)
|
|
260
|
260
|
# <stamp> <author>
|
|
261
|
261
|
self.changes_by_date = {} # stamp -> { files, ins, del }
|
|
262
|
|
- lines = getoutput('git-log --shortstat --pretty=format:"%at %an" |tac').split('\n')
|
|
|
262
|
+ lines = getoutput('git-log --shortstat --pretty=format:"%at %an"').split('\n')
|
|
|
263
|
+ lines.reverse()
|
|
263
|
264
|
files = 0; inserted = 0; deleted = 0; total_lines = 0
|
|
264
|
265
|
for line in lines:
|
|
265
|
266
|
if len(line) == 0:
|