we request since..until but got until..since. This makes the order of
changelog entries generated by git-dch the same order as if git-dch
would be called individually for each commit.
['%s..%s' % (start, end), '--', paths])
if ret:
raise GitRepositoryError, "Error getting commits %s..%s%s" % (start, end, ["", " on %s" % paths][len(paths) > 0] )
- return [ commit.strip() for commit in commits ]
+ return [ commit.strip() for commit in commits[::-1] ]
def show(self, id):
"""git-show id"""