Svn log - svn: '.' is not a working copy

╄→гoц情女王★ 提交于 2019-12-05 05:16:06

Try svn log [repository_url]

That will get the log of a particular repository rather than the local, checked-out repository.

See this documentation.

Use svnlook log <repos_path>.

If you don't want to supply the full URL, but you DO have a working copy handy, you can also specify that you want the HEAD revision in the repository:

svn log -r HEAD:1

The default when you omit the -r is as if you had specified BASE:1 which will only give you changes up to the latest revision pulled down into the working copy.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!