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
On Linux, if you want just the revision number:
svn info http://nick:password@www.myhost.de/svn/test | grep '^Revision:' | awk '{print $2}'