简介
第二个坑
错误
[ERROR] An error occurred while running git commit -m "Initial commit"
--no-gpg-sign (exit code 128):
*** 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
'Administrator@SuperBaolock.(none)')
解决方法
打开git所在目录下的git-base文件,执行下面两条语句
git config --global user.email "name@place.com"
git config --global user.name "name"
如下: