Can I retrieve an SVN Log from a local copy?

2019-02-08 09:33发布

My organisation ran an SVN repository server for 2 years. This server died in November; we didn't loose any files thanks to the local copies, but we lost the history, which is obviously a shame.

I still have my local repository copies and I'd like to know whether I can regain the SVN Log from this local copy. Usually for running SVN log a server connection is required, so the question is, is it possible to get the log without server?

标签: svn logging
2条回答
不美不萌又怎样
2楼-- · 2019-02-08 09:47

Generally speaking, no: log entries are stored as so-called "Revision Properties" SVN on the server.

You can, however, try to extract log entries from caches of an SVN client you were using -- as far as I know, TortoiseSVN caches log entries somewhere. SmartSVN does that as well.

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-02-08 10:06

The log is not stored in local copies : those only store the current copy you're working on (i.e. the last copy you checked out).

So, no, you cannot get the SVN log from a local extraction.

查看更多
登录 后发表回答