Linux - GitHub Contribution无法显示结果

GitHub Contribution无法显示结果


本文地址: http://blog.csdn.net/caroline_wendy


修改GitHub的账户

1. 打开一个commit,例如网址:
2. 在网址末尾添加.patch,在From中查找发送邮箱:
From: wangchenlong <[email protected]>
3. 把邮箱添加入GitHub的账户
4. 就可以看到GitHub的Contribution。

Git的具体配置

GIT不直接负责账号管理,只是通过username, useremail来简单地记录Code Commit的Author信息
git config --global user.name "fei"
git config --global user.email "[email protected]"
如果不方便设置全局的user.name和user.email, 则可以针对单个项目设置
git config --local user.name "fei"
git config --local user.email "[email protected]"
查看当前的配置
git config -l
建议: 公司内部项目使用—global的配置,公司外部项目使用 —local的配置;其中: local的配置保存在项目目录的.git/config文件中


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。