1. ホーム
  2. Git

git push please tell me who you are or git fatal: empty ident name (for <>) not llowed.

2022-03-17 14:33:54

1. ローカルにユーザーが設定されているかどうか、user.name と user.email を確認する。

// View user configuration information
git config --list

<イグ

設定されていない場合は、次のコマンドを入力します。

git config --global user.name "your username"
git config --global user.email "your email"

設定されている場合は、.git/config ファイルに以下を追加します。

[user]
    name = your username
    email = your email address

2 . 2. オンラインプロジェクトでも同様の作業を行い、無事に提出することができます。