Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list source versions using subversion

I am using svn to download the source code to an open source project. I want to download an older version do to compilation errors and I know you can do that, but I don't know the exact numbers (e.g. 1.2.3) that make up the version. Is there a way svn can list all of the available software versions and when they were published?

Thanks

like image 889
QAH Avatar asked Dec 22 '22 10:12

QAH


1 Answers

The command:

svn log

Will provide you with what you are looking for.

like image 103
dreadwail Avatar answered Dec 31 '22 08:12

dreadwail