Github contributions/Git提交了commit后github个人主页中没有活动记录
本篇文章要解决的问题是:
本地git客户端和github账户邮箱不一致导致提交的commit不能够显示在github个人主页的contributions中
4个步骤分别是:
1. 将git的email修改成和github的邮箱对应
修改邮箱地址: git config --global user.email "[email protected]" 查看当前邮箱: git config user.email
2. 将git中提交的的commit修改
复制到git中执行: git config alias.change-commits '!'"f() { VAR=\$1; OLD=\$2; NEW=\$3; shift 3; git filter-branch --env-filter \"if [[ \\\"\$\`echo \$VAR\`\\\" = '\$OLD' ]]; then export \$VAR='\$NEW'; fi\" \$@; }; f "
然后执行下面这条命令,把命令中的邮箱地址换成你自己的: (HEAD~3的意思是将最近提交的3次commit的邮箱设置成newEmail) git change-commits GIT_AUTHOR_EMAIL "[email protected]" "[email protected]" HEAD~3..HEAD
3. 重新拉取代码并提交即可看到效果
4. 删除修改commit时的备份(不是必须的)
执行命令: git update-ref -d refs/original/refs/heads/master
参考:
https://stackoverflow.com/que...
https://www.cnblogs.com/wyhli...
http://lincolnge.github.io/pr...
相关推荐
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
nebulali 2020-09-11
佛系程序员J 2020-09-15
fenggit 2020-09-15
JustHaveTry 2020-09-11
兄dei努力赚钱吧 2020-09-06
IngeniousIT 2020-08-25
liumengyanysu 2020-08-17
guying 2020-08-16