1. ホーム
  2. Git

Git Bash报错发生: メールアドレスが自動検出されない (「Anita@newton.(none)」を取得)的解决方法。

2022-03-18 22:22:14
<パス

在Git Bash中提交时报错:。

** Bitte sagen Sie mir, wer Sie sind.

Führen Sie  aus.
  git config --global user.email "[email protected]"
  git config --global user.name "Your Name"

um die Standardidentität für Ihr Konto festzulegen.
Lassen Sie --global weg, um die Identität nur in diesem Repository festzulegen.
fatal: E-Mail Adresse konnte nicht automatisch erkannt werden (erhielt 'Anita@newton.(none)')


解决方法



输入提示的两行命令,命令中的email及名改为自己真实的email及名。

  提示命令:
  git config --global user.email "[email protected]"
  git config --global user.name "Ihr Name"
  
  我的执行命令:
  git config --global user.email "[email protected]"
  git config --global user.name "Anita"