tags:

views:

87

answers:

2

How can I tell if a respository uses BerkeleyDB or FSFS?

+3  A: 

look into db/fs-type file in your repository (that is, of course, accessing it directly).

Michael Krelin - hacker
A: 

Crack open the "fs-type" file in your Subversion repository; e.g. D:\Development\SVN\db\fs-type. Mine shows "fsfs". It will show "bdb" for BerkeleyDB.

Cory Larson