git merge prompt"致命:清空身份"

时间:2012-05-14 12:54:14

标签: git merge

当我想使用git从“cl”分支合并更改时,我输入了:

git merge "merge" HEAD cl

我得到了以下的anwser:

  

* 请告诉我你是谁。

     

运行

     

git config --global user.email“you@example.com”
    git config --global user.name“你的名字”

     

设置帐户的默认身份。省略 - 全球设置   仅在此存储库中的身份。

     

致命:不允许空身份

所以,我打字:

git config  chandler.chen "chen lei"

然而,在配置帐户信息后,合并仍然得到以前的结果。

2 个答案:

答案 0 :(得分:12)

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

这对你来说最终是git config chandler.chen "chen lei"吗?!

以下是您需要运行的内容:

git config --global user.email "put@your.email.address.here"
git config --global user.name "put your name or nickname here"

答案 1 :(得分:0)

即使在修复了标识之后,我也不知道合并命令正在尝试做什么。它应该只是git merge cl