slowjet

is a part of a carburetor

githubでPull Requestを手動で処理する

Auto Merge Pull Requestみたいなのを使わないでやる

$ git remote add [username] [repository]

でプルリクエストを送ってくれた人のリモートを追加したら -v で追加できてるか確認

$ git remote -v

任意のブランチネームでブランチを切っておく

$ git branch [branchname]
$ git checkout [branchname]

プルリクエストを送ってくれた人のリモートからPullする

$ git pull [username]

"hogehoge"でブランチが切られてる場合は

$ git pull [username] hogehoge

問題なければmasterに移動して

$ git checkout master
$ git merge [branchname]

Pushして終わり

$ git push