How to find out which revision version my copy of svn is for?
|
2 answers
- If it costs Subversion,
"svn info"
in the directory with a local copy. - If in windows with TortoiseSVN installed, right-click on directories -> properties. Subversion tab.
|
Use the svnversion
command. svn info
cannot give full information about revision of working copy, since in SVN there is such a thing as a mixed-revision working copy denoting a working copy containing elements related to differently revisions. And still svnversion
convenient for use in any scripts.
|