I am essentially trying to do a "git merge --no-ff branch" to merge my branch back in. Looking at the Pygit2 documentation, I am not entierly sure what the correct way to do this is. The direct thought would be to do something like this:
repo.merge(branch.target)
However, I do not see any options for merging with no-fastforward. Has anyone extensively used pygit2 that can give me any insight? All the help is greatly appreciated.