执行git commit命令提示: “Please tell me who you are”的解决方案
---
### #事故现场
执行git commit命令提示:**"Please tell me who you are"**
![在这里插入图片描述](https://img-blog.csdnimg.cn/20200622152212540.png)
意思是,Git想知道提交代码的是谁,造成这个现象的原因可能是第一次提交代码,也有可能是长时间不操作,需要重新验证下。
### #解决方案
在Git控制台输入一下命令
```bash
git config --global user.email "邮箱"
git config --global user.name "用户名"
```
再次执行git commit ,正常无误。
---
作者:willingtolove
出处:http://www.cnblogs.com/willingtolove/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。