With svn, check the version number when it is disabled

I am offline (well, more precisely, my svn repository is not available right now), but I have a full working copy on which I, well, work :-)

Now I need to know the version number of the file. How to check the version number of a specific file (which, by the way, does not have the svn:keywords property) while offline?

I usually check them with svn ls -v or svn log | head svn log | head or svn blame (of course, they give more than I'm looking for now).

+8
version-control svn revision
source share
2 answers

Usage: svn info FILENAME

+15
source share

You can also enter the .svn folder and check the file with names, you will see the version number and author

+1
source share

Source: https://habr.com/ru/post/639902/


All Articles