vote up 3 vote down star

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?

flag

65% accept rate

6 Answers

vote up 4 vote down

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

link|flag
1  
-1 count is wrong, should have tested this first ... svn log is more verbose than you think – basszero Jun 10 at 14:54
1  
You're right, corrected id. Thanks. – Robert Munteanu Jun 10 at 15:00
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

Are you using Tortoise with Subversion?

link|flag
Subversion itself doesn't have a repo browser — you must be thinking of features in TortoiseSVN (tortoisesvn.tigris.org). – Quinn Taylor Jun 11 at 6:07
vote up 2 vote down

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|flag
vote up 4 vote down
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|flag
+1 did it without using wc – basszero Jun 10 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 at 6:12
svn log -q [filename] | grep -c '^r' – Quinn Taylor Jun 11 at 6:14
vote up 0 vote down

This oughta do it:

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

link|flag

Your Answer

Get an OpenID
or

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