git中的user.name和user.email具体有什么用处?

之前我一直以为适用于验证用户的,但是今天我在码云上提交了一个私有的repo,突然发现git的user.name和user.email是之前github的,结果发现是可以提交的,那我就想着name和email到底有什么用的,只是表明提交人的姓名而已吗

阅读 10.6k
3 个回答

可以这样说吧 表示当前提交的用户是谁

"GitHub uses the email address set in your local Git configuration to associate commits pushed from the command line with your GitHub account."(from https://help.github.com/artic...
也就是说这个邮箱是来匹配GitHub账户的

Git uses a username to associate commits with an identity. The Git username is not the same as your GitHub username.(from https://help.github.com/artic...
这个username只是用来标记身份的

验证是用的你的ssh key,用户名更多是个称谓

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进