Using SQL Server back end for Subversioning Repositories

前端 未结 2 592
攒了一身酷
攒了一身酷 2021-01-23 01:34

Has anyone attempted to use SQL Server Database as a Subversion file system back end? So that all Subversion Repositories would be stored in a SQL Database instead of a flat fi

2条回答
  •  [愿得一人]
    2021-01-23 02:14

    Subversion has two different repository formats. There's the default FSFS which uses a 'flat' file system. But you can also create repositories which use the berkeley db.

    To create such a BDB repository, use the command

    svnadmin create path/to/repository --fs-type BDB
    

提交回复
热议问题