Is it safe to use git with multiple users when the central repository is on a windows file share?

StackOverflow https://stackoverflow.com/questions/15074353

سؤال

We are a team of less than ten persons that need to quickly set up a git server that supports active directory based authentication.

The simplest solution seems to be to use a file share with a bare git repository and reaching it using a unc path, e.g.

git clone //server/share/repo.git

However, we are a bit worried about robustness. Are there no issues with concurrency when several people use the same git repository and there is no actual server component running?

Clients are running windows 7, server is Windows Server 2008R2. Using msysgit 1.8.1.2

(I am well aware that there are many other git server solutions, but, especially given the requirement of AD authentication, they are not as simple to set up)

هل كانت مفيدة؟

المحلول

It seems the only times the AR Auth will be in play is pushing/pulling.

When you clone the git repo, the entire history will be cloned as well, so every user will have a complete repo.

If the file share fails, any user can replace the code on a new share by pushing their code up.

Concurrency is not an issue - since git is distributed it handles concurrency differently from other VCSs: no file locks, etc.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top