github commit contributions无记录

问题:每次commit时候,在本project都会显示commit次数,但是主页的contributions不会变绿色,也就是contributions无效

解答:这种情况是因为github 不认为你是这个项目的贡献者,就是你没有与这个项目建立关联,或者不是在默认分支上提交的

  所以要建立本地projiect与远程的关联,让github认可你

git config --global user.name "username"
git config --global user.email “[email protected]

  并且这个邮箱一定要在github里添加

转载于:https://www.cnblogs.com/team42/p/8350290.html

你可能感兴趣的:(github commit contributions无记录)