git上传提交的时出现:Please tell me who you are
时间:2021-02-23 23:14:46
收藏:0
阅读:23
安装好git后,创建新项目,当git上传提交时出现了Please tell me who you are
也就是说git提交文件时需要确定一个你自己的身份
那么我们就打开git bash 输入
git config --global user.email "邮箱"
git config --global user.name "名称"
输完后,就能成功进行commit提交文件了。
原文:https://www.cnblogs.com/lhc1999/p/14438478.html
评论(0)