git commit - GitHub not showing my profile -
this question has answer here:
github show user name disable. when commit other project there show name. don't know issue here
and project not showing account contributor
contributor should showing 3 still showing 2 not showing me
what should ?
you should check commit author name , email, derives lcoal configuration user.name
, user.email
.
for github show github user, need exact name and email of github account when creating commits.
in local repo, type:
git log --pretty=format:"%h %an %ae %ad" --date=short
an
, ae
stands author name , author email.
if alone working on repo, can amend author/email local commits, , git push --force
.
Comments
Post a Comment