Skip to content

Instantly share code, notes, and snippets.

@marchampson
Created January 28, 2013 14:11
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save marchampson/4655798 to your computer and use it in GitHub Desktop.
Save marchampson/4655798 to your computer and use it in GitHub Desktop.
Add collaborator from command line
curl -i -u "my_user_name:my_password" -X PUT -d '' 'https://api.github.com/repos/my_gh_userid/my_repo/collaborators/my_collaborator_id'
@patspam
Copy link

patspam commented May 11, 2021

Or with the GitHub CLI:

gh api -X PUT repos/:owner/:repo/collaborators SOMEONE

@ProExpertProg
Copy link

You're missing a / in your comment:

gh api -X PUT repos/:owner/:repo/collaborators/SOMEONE

@RashidMehmoodCUIATD
Copy link

You're missing a / in your comment:

gh api -X PUT repos/:owner/:repo/collaborators/SOMEONE

An example would have been very good addition to your post

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment