my gbp.conf:
[DEFAULT]
upstream-branch = master
debian-branch = release
[git-buildpackage]
export-dir = ../build-area/
tarball-dir = ../tarballs/
upstream-branch = master
debian-branch = release
sign-tags = False
upstream-tag = v%(version)s
[import-orig]
# Filter out unwanted files/dirs from upstream
filter = [
'*egg.info',
'.bzr',
'.hg',
'.hgtags',
'.svn',
'CVS',
'*/debian/*',
'debian/*'
]
filter-pristine-tar = True
[git-import-dsc]
filter = [
'CVS',
'.cvsignore',
'.hg',
'.hgignore',
'.bzr',
'.bzrignore',
'.gitignore'
]
[git-dch]
# ignore merge commit messages
git-log = --no-merges
So, now I want to integrate the merge and build parts into Jenkins. There exists a lot of very old HOWTOS for Jenkins and Debian and also some for merging one branch into master ... but how should I configure the merges from master and debian, in the branch "release" ?
cu denny