Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Link private github repository to potential employer

Tags:

github

I have some private github repos that contains the work that I am most proud of. I would like potential employers to see this code. Is it possible for me to give them a link to the private repository so they can view my work?

like image 797
user2604504 Avatar asked Mar 06 '14 19:03

user2604504


People also ask

Can employers see private repository GitHub?

Can people see my private repository in GitHub? Definitely not. Because Private repositories are only accessible to you. If you share the access to other people, then they will access your repository.

Can you link private GitHub repository?

There is no way to share private repository among non-Github users. You need the Github account and be added as collaborator to the project.

How do I make a private repository visible?

Changing a repository's visibilityOn GitHub.com, navigate to the main page of the repository. Under your repository name, click Settings. Under "Danger Zone", to the right of to "Change repository visibility", click Change visibility. Select a visibility.

How do I make my private project public on GitHub?

Changing project visibility Navigate to your project. In the top-right, click to open the menu. In the menu, click Settings to access the project settings. Next to Visibility in the "Danger zone", select Private or Public.


1 Answers

You could either:

  • create a private repo in bitbucket and push your project there, then send an invitation to employers' emails
  • add potential employers as collaborators to your private Github repo.
    • On the main repo's page, go to the "Settings" tab
    • On the nav links to the right, "Collaborators"

I'd recommend against zipping the project and sending them the whole thing, as they'd either not see the git history, or see your entire git configuration, depending on how you zip the folder... And I think seeing how a developer works with git is important in addition to seeing the code itself...

like image 140
coisnepe Avatar answered Oct 10 '22 08:10

coisnepe