Leave my internship and remove me as a collaborator, I lost all my commits in my history

0

Galera, I worked for 7 months in a company and after my contract ended I became a collaborator. I had about 100 commits in their private project, but they all disappeared from my git profile. Does anyone know if I have my private contributions back in my profile?

    
asked by anonymous 14.06.2017 / 00:50

2 answers

0

Unfortunately not ... As you yourself said, the repository is private, so if you removed it, github disregards all your contributions to it.

However, you can continue to contribute to open source code! It's a great way to learn, and it will not be removed from your contribution list, only if the project is deleted (but your fork will stick). Remember, number of contributions is not a metric for software quality or for the skill of the programmer, for example, I can do 5000 useless commits while another person can solve a big problem in just 1 .

A good programmer is not one who has more contributions, but one who knows what he is doing and likes what he does.

Welcome to StackOverflow PT!

    
14.06.2017 / 01:15
1

According to GitHub documentation :

  

Private contributions are not shown by default and, when enabled, are completely anonymized to the general public. [...] Details of the issues, pull requests, and commits you have made on private repositories are only visible to your fellow repository collaborators.

Or in literal translation:

  

Private contributions are not presented by default, and when enabled, are completely anonymous to the general public. [...] The details of issues , pull requests and commits you have performed in private repositories are only visible to your fellow repository collaborators .

That is - both project administrators need to enable an anonymous view, and you need to select ' Public and Private Contributions ' in the contributions preview pane. If they do not activate, your content can not be viewed on your profile.

    
14.06.2017 / 02:03