首页 > 代码库 > Linux - GitHub Contribution无法显示结果
Linux - GitHub Contribution无法显示结果
GitHub Contribution无法显示结果
本文地址: http://blog.csdn.net/caroline_wendy
修改GitHub的账户
1. 打开一个commit,例如网址:
https://github.com/SpikeKing/Test-Yamba/commit/b5baed812c719674c89bc375e2ad87603bd113c7
2. 在网址末尾添加.patch,在From中查找发送邮箱:
From: wangchenlong <wangchenlong@126.me>
3. 把邮箱添加入GitHub的账户
4. 就可以看到GitHub的Contribution。
Git的具体配置
GIT不直接负责账号管理,只是通过username, useremail来简单地记录Code Commit的Author信息
git config --global user.name "fei"
git config --global user.email "fei@126.me"
如果不方便设置全局的user.name和user.email, 则可以针对单个项目设置
git config --local user.name "fei"
git config --local user.email "fei@126.me"
查看当前的配置
git config -l
建议: 公司内部项目使用—global的配置,公司外部项目使用 —local的配置;其中: local的配置保存在项目目录的.git/config文件中
Linux - GitHub Contribution无法显示结果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。