Why are source control systems still mostly backed with files?
Posted
by
Andy
on Programmers
See other posts from Programmers
or by Andy
Published on 2012-11-03T15:33:40Z
Indexed on
2012/11/03
17:20 UTC
Read the original article
Hit count: 265
version-control
It seems that more source control systems still use files as the means of storing the version data. Vault and TFS use Sql Server as their data store, which I would think would be better for data consistency as well as speed.
So why is it that SVN, I believe GIT, CVS, etc still use the file system as essentially a database, (I ask this question as we had our SVN server just corrupt itself during a normal commit) instead of using actual database software (MSSQL, Oracle, Postgre, etc)?
© Programmers or respective owner