Home > Blockchain >  Get GitHub commit contributions from commits to Azure DevOps repository
Get GitHub commit contributions from commits to Azure DevOps repository

Time:11-11

My wish is to have the contributions I make to a repo in Azure DevOps show up on my GitHub profile.

Is there a way to link this up properly?

The email I use for credentials when authenticating towards Azure DevOps is different than my GitHub connected email.

I have tried to use the same credentials for both but to no avail. Maybe I'm missing something.

Hopefully, someone out there has got this working.

Thanks a bunch in advance!

CodePudding user response:

Firstly, you should understand that GitHub and Azure DevOps are independent systems. Azure DevOps has provided some functions e.g REST API,UI function to get repository from GitHub. But It’s a one-way data transfer from GitHub to Azure DevOps.

There is no supported REST API or UI functions that can sync repo changes from to Azure DevOps to your GitHub according DevOps documents at present.

I am afraid that your GitHub contributions graph can’t get credited when you push a change to the Azure DevOps repo.

  • Related