Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I'm getting "svn: '.' is not a working copy" when i use the svn log command.

I know that i need a working copy for the log command to work but can this be done directly on a repository?

My goal is to display the information (change history) of a repository. I think updating the working copy whenever i need the log information is not a good solution.

Is there an alternative solution to this or updating a working copy every time i need to log is the only way to go?

Thanks in advance.

like image 823
Filipe Pinheiro Avatar asked Apr 28 '10 12:04

Filipe Pinheiro


2 Answers

Try svn log [repository_url]

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

See this documentation.

like image 175
Matt Bridges Avatar answered Sep 28 '22 03:09

Matt Bridges


Use svnlook log <repos_path>.

like image 27
Marcelo Cantos Avatar answered Sep 28 '22 03:09

Marcelo Cantos