1. ホーム
  2. Git

Gitのコミットでfatal: unable to auto-detect email addressのエラーが報告される。

2022-03-18 22:19:17

        Git commit reports fatal: unable to auto-detect email address error(電子メールアドレスの自動検出ができない)。

git commit を初めて実行すると、fatal: unable to auto-detect email address というエラーが表示されます。

エラーの原因: デフォルトのgitがユーザーを設定しないことが原因のはずです

解決方法

解決策は、実はgitが以下の場所で与えています。

Git Bashで次の二つのコマンドを実行し、グローバルな変更を行います。

git config --global user.email "email address (optional)"

git config --global user.name "username (optional)"