aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xgit-dch3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index 6133a3cf..0ba7feda 100755
--- a/git-dch
+++ b/git-dch
@@ -249,6 +249,7 @@ def main(argv):
changelog = 'debian/changelog'
until = 'HEAD'
found_snapshot_header = False
+ first_commit = None
parser = GbpOptionParser(command=os.path.basename(argv[0]), prefix='',
usage='%prog [options] paths')
@@ -359,7 +360,7 @@ def main(argv):
if commits:
shortlog_to_dch(repo, commits, options)
fixup_trailer()
- else:
+ elif not first_commit:
print "No changes detected from %s to %s." % (since, until)
if options.release: