端くれプログラマの備忘録 Git [Git] リポジトリごとに異なるGitユーザを割り当てる

[Git] リポジトリごとに異なるGitユーザを割り当てる

仕事用と勉強用のリポジトリでGitユーザを変えたいような場合に使える。

グローバル設定 (./gitconfig)

$ git config --global user.name "Taro"
$ git config --global user.email "taro@example.com"

リポジトリごと (リポジトリ/.git/config)

$ git config user.name "84kure"
$ git config user.email "84kure@example.com"

参考サイト

同じマシンで複数のgithubアカウントを使い分ける – Qiita
http://qiita.com/strsk/items/96987bfc98e3f92fe6fb