Hi
I am presenting Git to a 10 man programming team who currently use Visual Source Safe.
They need to host their Git server inside the company. Windows or Linux. Directory authentication is Novell eDirectory.
They need some granular security on who can push to the central server.
From:
http://stackoverflow.com/questions/923130/what-type-of-git-server-do-you-use-or-how-do-you-use-git
Maybe a workflow could be:
- Setup 10 users on the server.
- Setup a common directory on the servers filesystem that the 10 users have write access to
- Push files to the server via SSH eg git push [email protected]:user1/project.git
- But then I need that the keys are installed on the server
Question: Does anyone use a workflow like this successfully in a company. What works? This is starting to feel like most people use Git with GitHub etc..
[Edit]: Please see http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe Maybe Git isn't the right fit for this team.