Herokuで「Please tell me who you are」エラーが出た場合の解決方法についてまとめました。
## 【Heroku】Please tell me who you areエラー
Herokuで「git commit -m」を実行すると、以下のエラーが出ることがあります。
$ git commit -m "first commit" *** 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.
この場合は、指示されているようにデプロイ先のHerokuアカウントの[メールアドレス]と[ユーザー名]を設定してやります。
$ git config --global user.email "xxxx@gmail.com" $ git config --global user.name "USERNAME"

【C#入門】基礎文法とサンプル集
C#言語の基本文法・使い方をサンプルプログラムのソースコード付きで解説します。
コメント