1. ホーム
  2. ギット

[解決済み】Git: ローカルのuser.nameとuser.emailをレポごとに異なる値に設定する

2022-04-19 22:05:15

質問

現在、2つのプロジェクトに取り組んでいますが、これらのプロジェクトでは、プッシュするときに、ローカルのユーザー名と電子メールに異なるデータを設定することが求められています。

そのため、常に設定を更新しています。

git config --local user.email "[email protected]"

これらは異なるリポジトリであるため、各リポジトリのローカルメールを定義する方法はありますか?

おそらく .gitconfig ?

解決方法は?

1つのレポの場合。

git config user.name "Your Name Here"
git config user.email [email protected]

グローバルな)デフォルトメール用(~/.gitconfigで設定される)。

git config --global user.name "Your Name Here"
git config --global user.email [email protected]