我最近開始使用git。我試圖按照設置我的用戶信息的指示,但似乎可怕的錯誤:Git提交作者信息 - 誰是基督徒S.?
[[email protected]] git config --list
user.name=**MY NAME**
user.email=**MY EMAIL**
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.origin.url=** URL **
branch.master.remote=origin
ranch.master.merge=refs/heads/master
到目前爲止,這麼好。我的名字&電子郵件地址似乎是正確
[[email protected]] git add somefile
設置我添加了一個文件,現在想將其提交:
[[email protected]] git commit -m "test commit"
[master 280efe4] test commit
Author: Christian S. <[email protected]****.com>
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 somefile
突然冒出......基督教S.
我忽略了什麼?我不知道這個名字和電子郵件地址是從哪裏來的。這是一些默認值我忘了重寫某處?
編輯:刪除個人信息
http://www.strcat.de/dotfiles /dot.zshexports但是,爲什麼你*擁有它? (可能看GIT_AUTHOR_NAME和GIT_AUTHOR_EMAIL變量環境變量) – 2012-05-25 06:06:22
至少你有Christian的電子郵件。使用你最喜歡的郵件客戶端問他/她? ;) –
@pst可能是解決方案 – Chris