Get revision number of a remote repository

后端 未结 5 1194
半阙折子戏
半阙折子戏 2021-02-14 20:26

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

5条回答
  •  遇见更好的自我
    2021-02-14 20:56

    svnversion is just for working copies, but one way to query your repository would be to use svn info as follows:

    svn info http://nick:password@www.myhost.de/svn | grep Revision
    

提交回复
热议问题