On the local machine it is no problem to get the revision number of a subversion repository with svnversion. Now I want to get the revision number from my online re
svnversion
A handy AWK one-liner to get only the number portion:
svn info http://nick:password@www.myhost.de/svn | awk '/Revision:/ { print $2 }'