Git 管理项目 遇到的问题

Posted 廖利君

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 管理项目 遇到的问题相关的知识,希望对你有一定的参考价值。

Git 在commit代码的时候出现错误  意思是有没有设置用户名和邮箱

git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree commit -q -F /var/folders/87/wkg82g816sz6s0fp95_z7pnw0000gn/T/SourceTreeTemp.gJtD9g 

 *** Please tell me who you are.

Run

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

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

 

to set your account‘s default identity.

Omit --global to set the identity only in this repository. 

fatal: unable to auto-detect email address (got ‘[email protected](none)‘)

Completed with errors, see above

解决办法:

打开终端  进入项目的根目录 

cd 把项目拖进来

luweiMinideMini:Meilv1 luweimac_mini$   git config --global user.email "你git上的邮箱地址"

luweiMinideMini:Meilv1 luweimac_mini$ git config --global user.name "你git上的用户名"

 

以上是关于Git 管理项目 遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

IDEA使用git对HitHub管理(零基础上手Git)

IDEA使用git对HitHub管理(零基础上手Git)

平时用的git,遇到这些问题怎么办?

如何将现有的项目添加到远程的git库里面!

工作中用Git对项目进行管理

记一次项目中遇到的git问题