GitHub上でforkする
$ git clone https://github.com/mochikichi/42tokyo_sep_study_group.git
$ cd 42tokyo_sep_study_group
$ git init
$ git config --global user.name "ユーザー名"
$ git config --global user.email メールアドレス
$ git remote add upstream https://github.com/mochikichi/42tokyo_sep_study_group.git
$ git checkout -b {ブランチ名}
- 任意のファイルを編集/作成する
$ git add .
$ git commit -m "コミットメッセージ"
$ git push origin {ブランチ名}
GitHub上でプルリクエスト作成 Compare & pull requestボタン → Create pull requestボタン
プルリクエストを確認してリポジトリオーナがmasterへmergeする