herokuの環境構築のメンターをしていたところgitを使ってソースをコミットしようとしたら以下のようなエラーが発生しました。
Author identity unknown *** 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. fatal: unable to auto-detect email address (got '【ユーザー名】@【コンピューター名】.(none)')
解決策
gitのグローバル変数に適当なメールアドレスとユーザ名を設定したら解消します。
git config --global user.email "xxxxx@xxx.com(メールアドレス)" git config --global user.name "adash333(ニックネームなど)"
コメント