LoginSignup
1
0

More than 1 year has passed since last update.

$ git commit *** Please tell me who you are.

Posted at
$ git 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 'XXX@XXX.(none)')


対処法

# ユーザー名を設定する
% git config user.name "{ユーザ名}" 
# メールアドレスを設定する
% git config user.email "{メールアドレス}"

「メアドや名前はカンマ入れない

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0