Gitを使いたいのだけど、まだインストールしてませんw なので予習を兼ねてBest Practicesを訳。間違っているかもしれないので、ご了承ください。 http://www.tpope.net/rails-git-best-practices 名前とメールアドレスを設定しよう shell>> $ git config --global user.name "Tim Pope" $ git config --global user.email "foo@gmail.com" <<-- ついでにカラーリングコマンドも shell>> $ git config --global color.diff auto $ git config --global color.status auto $ git config --global color.branch auto $ git config

