Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to show my GitHub contributions from work profile in my private profile?

Tags:

git

github

My company asks every employee to work from another GitHub account with company email address. Work repositories are all private.

git config --get --global user.email returns my private email address (user.name returns private Github nickname)

git config --get user.email in company repo returns my work email address (user.name returns work nickname)

Is there a way to show activity from work profile in my private profile? I know that I can change user.email for every commit in all work repos to my private email, but that will be really strange. Do I have any chances to see green contribution tiles on my private GitHub account from work one?

Thanks!

like image 737
ignteamhr Avatar asked Oct 24 '25 17:10

ignteamhr


1 Answers

You can show contributions to private repositories in addition of your contributions to public ones ("Publicizing or hiding your private contributions on your profile")

But you cannot show contributions from another account (ie your work profile) from your private profile: those are two different accounts.

like image 75
VonC Avatar answered Oct 26 '25 07:10

VonC