up vote 3 down vote favorite
share [g+] share [fb]

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?

link|improve this question

58% accept rate
feedback

6 Answers

Use svn log -q filename | grep '^r' | wc -l

link|improve this answer
1  
-1 count is wrong, should have tested this first ... svn log is more verbose than you think – basszero Jun 10 '09 at 14:54
1  
You're right, corrected id. Thanks. – Robert Munteanu Jun 10 '09 at 15:00
feedback
svn log FOO.C -q | grep -c r

svn log -q prints summary information for the given file or directory in the log, and grep -c r counts the number of lines containing the letter "r" (basically we just want to ignore the spacer lines "--------")

link|improve this answer
+1 did it without using wc – basszero Jun 10 '09 at 14:53
Agreed, doing the count in grep is a nice touch. However, using the pattern '^r' is probably a better idea, so it only matches lines that start with r, which is faster since it doesn't have to search the entire ---- line to know it doesn't match. Also, I generally put the option flags before the main argument (in this case, the filename) but that's a matter of style. – Quinn Taylor Jun 11 '09 at 6:12
svn log -q [filename] | grep -c '^r' – Quinn Taylor Jun 11 '09 at 6:14
feedback

The Subversion book explains:

You can also examine the log history of a single file or directory. For example:

$ svn log foo.c

$ svn log http://foo.com/svn/trunk/code/foo.c

These will display log messages only for those revisions in which the working file (or URL) changed.

Full description of the log command is here.

link|improve this answer
feedback

Doesn't 'svn log' provide you with the information you need?

link|improve this answer
feedback

I'm fairly certain Subversion contains a View History mechanism within the Repo Browser.

Are you using Tortoise with Subversion?

link|improve this answer
Subversion itself doesn't have a repo browser — you must be thinking of features in TortoiseSVN (tortoisesvn.tigris.org). – Quinn Taylor Jun 11 '09 at 6:07
feedback

This oughta do it:

svn log -q | grep -v "\-\-\-\-\-\-\-\-" | wc -l

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.