2012-06-08 65 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

此回答有用嗎? –