diff options
author | Guido Guenther <agx@sigxcpu.org> | 2007-10-11 14:30:18 +0200 |
---|---|---|
committer | Guido Guenther <agx@sigxcpu.org> | 2007-10-11 14:30:18 +0200 |
commit | 09751bce5528c0803006bf8261e66ee9e5956f9d (patch) | |
tree | 8c0c7d02442a0aa99e50fde7df7f367133cb6993 /git-dch | |
parent | 63fc12515195a7307700192e246b585ba0cb4072 (diff) | |
download | git-buildpackage-09751bce5528c0803006bf8261e66ee9e5956f9d.tar.gz git-buildpackage-09751bce5528c0803006bf8261e66ee9e5956f9d.tar.bz2 git-buildpackage-09751bce5528c0803006bf8261e66ee9e5956f9d.zip |
make --git-log a config file option
Diffstat (limited to 'git-dch')
-rwxr-xr-x | git-dch | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -198,6 +198,8 @@ def main(argv): help="Format string for debian tags, default is '%(debian-tag)s'") parser.add_config_file_option(option_name="snapshot-number", dest="snapshot_number", help="Expression to determine the next snapshot number, default is '%(snapshot-number)s'") + parser.add_config_file_option(option_name="git-log", dest="git_log", + help="options to pass to git-log") parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="verbose command execution") parser.add_option("-s", "--since", dest="since", help="commit to start from") @@ -207,7 +209,6 @@ def main(argv): help="mark as snapshot build") parser.add_option("-a", "--auto", action="store_true", dest="auto", default=False, help="autocomplete changelog from last snapshot or tag") - parser.add_option("--git-log", dest="git_log", help="options to pass to git-log", default="--no-merges") (options, args) = parser.parse_args(argv[1:]) if options.snapshot and options.release: |