Using Rugged, what\'s the canonical way to perform a fast-forward \"merge\"?
From here I found one possible lead:
# Move branch forward
# Since there
There is no need for an operation called "fast-forward merge" libgit2 since a so-called ff-merge is updating the current branch to whatever commit is on the other branch, which does exist.
repo.checkout_tree(other_branch.target)
repo.references.update(repo.head.resolve, other_branch.target_id)
will update the workdir to what the other side has, and then set the current branch to point to whatever the commit at the tip of the branch to "merge", which is what an ff does.