我在命令下面创建了repo use。
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
答案 0 :(得分:0)
查看big-repo/db
目录。例如,big_repo/db/revs/0
将包含修订版本的更改(不要指望500MB更改,但它会被压缩)。