本文主要是介绍idea中执行git报错Please tell me who you are. Run git config --global user.email “you@exam,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在使用idea的git commit -am“xx" 提交代码的时候报错:
Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name “Your Name”
解决办法:
git config --global user.email "你注册git的邮箱"
git config --global user.name "用户名"
这篇关于idea中执行git报错Please tell me who you are. Run git config --global user.email “you@exam的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!