user2777473
user2777473

Reputation: 3826

github invite non-github users to private repo

I am setting up a private repository in GitHub and I want to invite people to my repo.

I found out that I can invite github users as my team members, but I want to know is it possible to invite non-github users to access my repo for checkin/checkout?

Thanks in advance.

Upvotes: 15

Views: 5418

Answers (1)

Arialdo Martini
Arialdo Martini

Reputation: 4567

You could add their ssh keys as Deployment Keys.

Deployment keys are ssh keys of users (usually, scripts) that are allowed to read the repository so they can build the code and deploy it somewhere.

This would allow your non-githubber coworkers to clone the repository.

Unfortunately, I don't think there's an equivalent system to allowing non-githubber to use the web interface.

Upvotes: 2

Related Questions