aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
Diffstat (limited to 'git-dch')
-rwxr-xr-xgit-dch5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index 5ba80fab..423f3cd6 100755
--- a/git-dch
+++ b/git-dch
@@ -413,7 +413,10 @@ def main(argv):
if args:
gbp.log.info("Only looking for changes on '%s'" % " ".join(args))
- commits = repo.commits(since=since, until=until, paths=" ".join(args), options=options.git_log.split(" "))
+ commits = repo.commits(since=since, until=until,
+ paths=" ".join(args),
+ options=options.git_log.split(" "))
+ commits.reverse()
# add a new changelog section if:
if options.new_version or options.bpo or options.nmu or options.qa: