Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add collaborators to openshift git repo

Tags:

git

openshift

I have an application set up in redhat openshift and are able to commits and push.

My question is, how do I include my teammates into this repository so that they can do the same as well.

New to git and openshift. Help appreciated.

Thank you.

like image 432
Mark Seah Avatar asked Jul 05 '12 06:07

Mark Seah


2 Answers

Add their SSH Public keys to your the application through the web console or the command line tools. In the command line it is rhc-sshkey.

Once those keys are added your other developers should be able to use the same git commands (over SSH) that you use to interact with the repo.

"rhc app show" should give you the SSH git url.

like image 139
TheSteve0 Avatar answered Nov 02 '22 22:11

TheSteve0


Following step by step instructions from the below link would help:

https://www.openshift.com/blogs/managing-multiple-ssh-keys-on-openshift

like image 44
Amudhan Avatar answered Nov 02 '22 22:11

Amudhan