# Pull Requestの手順書

1. Forkする
2. `git clone https://github.com/foo/bar.git`
3. `git checkout -b hogeSpike`
4. commitする
  * 先頭行は80文字以内
  * 先頭行の頭文字は小文字
  * 先頭行のピリオドは省く
	* 修正した問題点、修正の妥当性を本文に含める
5. `git checkout -b hoge`
6. `git rebase -i master`
7. 2つめ以降のcommitの`pick`を`squash`に書き換え
8. `git push origin hoge`o

## ソース
[GitHubへpull requestする際のベストプラクティス](http://d.hatena.ne.jp/hnw/20110528)
[コミットメッセージの作法](http://qiita.com/suin/items/b3619ddaa176fef519cb)