aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-08-06 13:55:53 -0400
committerGuido Günther <agx@sigxcpu.org>2010-08-06 13:55:53 -0400
commit88afa6117ea4dd6b5d8fd88936afffb11c25ec47 (patch)
tree7109bd62cfdbfbfbbec58ddf5c00a8b4873ee6f2 /gbp
parentf63c4ed85ca16a6869cf35bc9070e3c28163594e (diff)
Pass --multimaint-merge on to dch
Closes: #586165
Diffstat (limited to 'gbp')
-rw-r--r--gbp/config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/gbp/config.py b/gbp/config.py
index d8b22213..10e1a5b9 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -59,7 +59,8 @@ class GbpOptionParser(OptionParser):
'ignore-regex' : '',
'compression' : 'auto',
'compression-level': '9',
- 'remote-url-pattern' : 'ssh://alioth.debian.org/git/collab-maint/%(pkg)s.git'
+ 'remote-url-pattern' : 'ssh://alioth.debian.org/git/collab-maint/%(pkg)s.git',
+ 'multimaint-merge' : 'False',
}
help = {
'debian-branch':
@@ -96,6 +97,8 @@ class GbpOptionParser(OptionParser):
"extract orig tarball when using export-dir option, default is '%(overlay)s'",
'remote-url-pattern':
"Remote url pattern to create the repo at, default is '%(remote-url-pattern)s'",
+ 'multimaint-merge':
+ "Merge commits by maintainer, default is '%(multimaint-merge)s'",
}
config_files = [ '/etc/git-buildpackage/gbp.conf',
os.path.expanduser('~/.gbp.conf'),