2012-06-08 68 views
0

我在下面的命令中创建了回购使用。svn db文件在哪里?

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" 

我检查该轨迹文件的大小使用du -m big_repo是1001MB,但为什么回购/ big_repo远程回购没有任何文件的变化?

svn db文件存储在哪里? tks

回答

0

请看big-repo/db目录。例如,big_repo/db/revs/0将包含按修订版本进行的修订版本(不要指望500MB更改,但它将被压缩)。

+0

此回答有用吗? –