报错信息:
*** 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
‘King-lby@LAPTOP-OMFJU5VO.(none)’)
解决方案:
这是因为我们在创建本地仓库时未定义用户名和邮箱,此时再按照错误提示,利用
git config --global user.name "King"
git config --global user.email "1941103843@qq.com"
进行用户名和密码配置发现并不管用。
需要到项目 .git\config文件最后加入
[user]email=your emailname=your name
查看一下我们是否配置成功。