我在命令下创建 repo 使用。
svnadmin create ./repo/big_repo
svn checkout file:///repo/big_repo
cd big_repo && dd if=/dev/zero of=500MB bs=1m count=500
svn add 500MB && svn commit -m "big file"
我检查使用的 loca 文件大小du -m big_repo
为 1001MB,但为什么 repo/big_repo 远程 repo 没有任何文件更改?
svn db 文件存储在哪里?tks