How i can find out which is the latest revision number in the repository?
views:
52answers:
1
+2
A:
svn info (or svn st) will tell you the current revision of your working copy. svn st -u will tell you the latest revision at the repository (and which files differ from your working copy). Use svn help status to learn more.
pjmorse
2010-09-23 11:58:29