Given a file, how do I find out number of times the file was revised? The head revision number may be in hundreds but I would have revised a file just 4 times. Thus given that file, I want 4 as the answer. Sounds pretty trivial but I was unable to find any command to achieve this. Can someone help?
|
|
|
|
|
|
|
Use |
||||||||
|
|
|
Doesn't 'svn log' provide you with the information you need? |
||
|
|
|
|
I'm fairly certain Subversion contains a View History mechanism within the Repo Browser. Are you using Tortoise with Subversion? |
||
|
|
|
The Subversion book explains:
Full description of the log command is here. |
||
|
|
|
|
|
||||||
|
|
|
This oughta do it: svn log -q | grep -v "\-\-\-\-\-\-\-\-" | wc -l |
||
|
|
