github commit时出现 Please tell me who you are.以及项目名称管理

Posted 启动

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github commit时出现 Please tell me who you are.以及项目名称管理相关的知识,希望对你有一定的参考价值。

github commit时出现 Please tell me who you are.....

第一种设置全局的,

直接在命令行输入

git config --global user.email "[email protected]"

git config --global user.name "Your Name"

 

第二种设置单独的,在每个仓库里的.git下有个config文件,在里面添上

[user]
    name = XXX(自己的名称)
    email = XXXX(邮箱)

当全局的和单独的都存在时,默认使用单独的

以上是关于github commit时出现 Please tell me who you are.以及项目名称管理的主要内容,如果未能解决你的问题,请参考以下文章