0

我在命令下创建 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

4

1 回答 1

0

big-repo/db在目录中查找。例如,big_repo/db/revs/0将包含逐个修订版本的更改(但不要期望 500MB 的更改 - 它将被压缩)。

于 2012-06-08T08:45:54.363 回答