PHPStormでGIT PULLしたらエラー

PHPStormでGIT PULLしたら以下のエラーが発生。
(Windows10)

Git Pull failed
 From https://********
 * branch            master     -> FETCH_HEAD
 = [up to date]      master     -> origin/master
 *** Please tell me who you are.
 Run
 git config --global user.email "you@example.com"
 git config --global user.name "Your Name"
 to set your account's default identity.
 Omit --global to set the identity only in this repository.
 unable to auto-detect email address (got '***@******-IPDVUSM.(none)')

エラー内容を見ると、次のコマンドを実行せよとの事

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

PHPStormの設定画面から上記の項目が見当たらなかったので、指示の通り実行するとPULLが成功。

コメント

タイトルとURLをコピーしました