aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-02-24 18:57:18 +0100
committerGuido Günther <agx@sigxcpu.org>2009-02-26 13:48:29 +0100
commit2fa0cc88fca5facc632cf347bf17a6914367e225 (patch)
tree419616f2c8b4fdab09a73b8322e34ec07f5096f0 /gbp
parent1e1a1ca349ef806314c2e91056f8cd074e9116ee (diff)
make --[no-]full a config file option
Diffstat (limited to 'gbp')
-rw-r--r--gbp/config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gbp/config.py b/gbp/config.py
index 9ef668af..3d20beac 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -45,6 +45,7 @@ class GbpOptionParser(OptionParser):
'ignore-new' : 'False',
'meta' : 'False',
'meta-closes' : 'Closes|LP',
+ 'full' : 'False',
'id-length' : '0',
'no-dch' : 'False',
'git-author' : 'False',
@@ -68,6 +69,10 @@ class GbpOptionParser(OptionParser):
"files to filter out during import (can be given multiple times)",
'git-author':
"use name and email from git-config for changelog trailer, default is '%(git-author)s'",
+ 'full':
+ "include the full commit message instead of only the first line, default is '%(full)s'",
+ 'meta':
+ "parse meta tags in commit messages, default is '%(meta)s'",
}
config_files = [ '/etc/git-buildpackage/gbp.conf',
os.path.expanduser('~/.gbp.conf'),