10 Dec
2007
10 Dec
'07
8:04 p.m.
On Mon, 10 Dec 2007 10:40:43 -0800, "John Faith" <jfaith7@...400...> wrote:
I've set up git shared repositories, but I always tell the users to be very careful about committing to the repository at the same time since I heard that git does not do file locking on shared repositories. Does anyone with git experience know if this issue has been solved, or if this was ever an issue?
Git's repository design means that it doesn't _need_ to do file locking.
A remote push will either succeed or fail atomically, without any risk of damage.
-mental