「いざHeroku(ヘロク)にデプロイ!」しようとしたときに
Please tell me who you are
ってエラーが出る場合がある。
簡単に言うと「あなたは誰ですか?」と言う意味です。
はじめてコミットするときなどに出る場合があります。
$ git init
$ git add .
$ git commit -m "My 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.
fatal: unable to auto-detect email address (got 'vagrant@ubuntu-bionic.(none)')
こういう状態ですね。
これは簡単に解決できますので安心して下さい。
Please tell me who you areは名前とメールアドレスを登録する
$ git config --global user.email "あなたのメールアドレス"
$ git config --global user.name "あなたのお名前をローマ字で"
これを入力してあげれば、無事にdeploy(デプロイ)できるようになります。