今天在使用git 更新程序的时候,报如下错误
fatal: unable to auto-detect email address (got 'Yang@yyw.(none)')
解决方法如下:
$ git config --global user.email "you@example.com"
$ git config --local -l 查看本地配置
本文介绍了一种在使用Git过程中遇到的关于无法自动检测到电子邮件地址的问题及其解决方案。通过简单的命令即可更新用户的电子邮件配置。
今天在使用git 更新程序的时候,报如下错误
fatal: unable to auto-detect email address (got 'Yang@yyw.(none)')
解决方法如下:
$ git config --global user.email "you@example.com"
$ git config --local -l 查看本地配置
596
832

被折叠的 条评论
为什么被折叠?