码迷,mamicode.com
首页 > 其他好文 > 详细

Git配置用户名、邮箱

时间:2019-09-29 21:52:31      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:pre   oba   amp   class   一件事   pad   not   重要   设置   

 

当安装完 Git 应该做的第一件事就是设置你的用户名称与邮件地址。

这样做很重要,因为每一个 Git 的提交都会使用这些信息,并且它会写入到你的每一次提交中,不可更改。

否则,用户名会显示为unknown,无法区分代码是开发团队中的哪个成员提交的。

 

一 检查配置

 

git config --get user.name
git config --get user.email

 

二 全局配置

 

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

 

三 查看配置文件

 

Mac是~/.gitconfig文件:

 

vim ~/.gitconfig

 

Windows是 Users/用户/.gitconfig文件:

使用Notepad++查看。

 

Git配置用户名、邮箱

标签:pre   oba   amp   class   一件事   pad   not   重要   设置   

原文地址:https://www.cnblogs.com/sea-breeze/p/11609838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!