2010年9月10日
githubでの最も普通の開発プロセス
プロジェクトに検索機能を追加しようとする。
git checkout -b add-search
=> ブランチ'add-search'を作成し、それに乗換
// ファイル修正
git add .
git commit -am "Done"
=> 修正ファイルをコミット、コミットメッセージは"Done"
git checkout master
=> masterブランチに乗換
git merge add-search
=> add-searchでの修正内容をマージ
git push
=> サーバにpush