If you do not want to use the merge button or an automatic merge cannot be performed, you can perform a manual merge on the command line.
git fetch origin
git checkout -b branch-to-merge origin/branch-to-merge
git merge mastergit checkout master
git merge --no-ff branch-to-merge
git push origin master