4

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

John Paul Ashenfelter
  • 3,135
  • 1
  • 22
  • 29
Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697

2 Answers2

4

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.

Paul Beckingham
  • 14,495
  • 5
  • 33
  • 67
3

I recomend gitosis to manage private repositories.

Here you have a nice Tutorial

Luis Melgratti
  • 11,881
  • 3
  • 30
  • 32