Pull RequestをブランチにMergeする方法

masterにマージする方法

git checkout master
git pull https://github.com/otheruser/repo.git branchname
git push origin master

ではブランチにマージする方法

あらかじめGithub上でブランチを作っておく(features/hoge)

#ローカルにプルしてくる
git checkout features/hoge
git branch --set-upstream-to=origin/features/hoge features/hoge
#ここでのブランチ名はプルリクエストを送ってくれたプロジェクト側のブランチ名
git pull https://github.com/otheruser/repo.git branchname
#ブランチにプッシュする
git push origin/features/hoge features/hoge