I want to put a password to my repository so that the password is asked, when cloning from my repository.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

To restrict access to repository cloning, you need to use the ssh://... protocol, and provide ssh access to only those users you want to have access.

What you probably should do is look up the various "git workflow" questions and answers - they describe the means by which various team members pull/push from/to each other. There are many ways to do this.

link|improve this answer
How can I provide ssh access to those users which I want to have access? – Masi Feb 16 '09 at 3:52
You create an account for them on the machine that hosts the repo, so they can clone by running something like: git clone user@machine:/path/to/repo.git – Paul Beckingham Feb 16 '09 at 5:02
feedback

I recomend gitosis to manage private repositories.

Here you have a nice Tutorial

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.