In my directory, I do the usual working cycle:
svn update
#..... apply my modifications
svn add new_stuff
svn commit
When I do a
svn status -v
afterwards, the "working revision number" and the "last committed revision number" is always the same, unless with one file (which I have never touched), where svn status -v gives the following output:
677 317 NameOfUser NameOfFile
To investigate this, I did a svn log on this file, which showed only two entries: One for r317 (file creation) and one for r660 (restructuring the repository without change of file contents), both applied before I started programmming in this project.
I understand that in r317, the file was created, and the content had never changed after this. But what is the exact meaning of "working revision", 677?