summaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-10-11 14:30:18 +0200
committerGuido Guenther <agx@sigxcpu.org>2007-10-11 14:30:18 +0200
commit09751bce5528c0803006bf8261e66ee9e5956f9d (patch)
tree8c0c7d02442a0aa99e50fde7df7f367133cb6993 /gbp
parent63fc12515195a7307700192e246b585ba0cb4072 (diff)
make --git-log a config file option
Diffstat (limited to 'gbp')
-rw-r--r--gbp/config.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/gbp/config.py b/gbp/config.py
index 96eeddb8..ba2ed345 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -26,14 +26,15 @@ class GbpOptionParser(OptionParser):
'cleaner' : 'debuild clean',
'debian-branch' : 'master',
'upstream-branch' : 'upstream',
- 'sign-tags' : '', # empty means False
- 'no-create-orig' : '', # empty means False
+ 'sign-tags' : '', # empty means False
+ 'no-create-orig' : '', # empty means False
'keyid' : '',
'posttag' : '',
'debian-tag' : 'debian/%(version)s',
'upstream-tag' : 'upstream/%(version)s',
'filter' : '',
- 'snapshot-number' : 'snapshot + 1'
+ 'snapshot-number' : 'snapshot + 1',
+ 'git-log' : '--no-merges',
}
config_files=['/etc/git-buildpackage/gbp.conf',
os.path.expanduser('~/.gbp.conf'),
@@ -68,4 +69,4 @@ class GbpOptionParser(OptionParser):
default=self.config[option_name],
help=help % self.config, **kwargs)
-# vim:et:ts=4:sw=4:
+# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: