Tech Blog

gitconfigを会社用、個人用の設定で使い分けたい場合の設定方法

2020-04-03

.gitconfigで、user.nameとuser.emailを会社と個人で使い分けたい場合の例を紹介します。

~/.gitconfigの末尾に以下を挿入すると、あるリポジトリのみは会社のアカウントの設定でgitを利用できます。

[includeIf "gitdir:~/dev/src/bitbucket.org/company/"]
    path = ~/dev/src/bitbucket.org/company/.gitconfig

そして、会社のリポジトリ(ここでいうcompany/以下)の配下に.gitconfigを作り、会社用のuser.nameとuser.emailを追記します。

[user]
	name = junpeko_company
	email = [email protected]

includeIfで、ある条件の場合は、こちらを読み込んでねという設定ができます。