vote up 2 vote down star
2

I only want a list of files that have been added (not ones that have been modified) since a certain date. Is there an easy way to do this?

Answer: Here's what ended up working for me, thanks guys!

svn log -v -r{2008-10-1}:HEAD svn://path.to.repo/ | grep "^   A" | grep ".java" | sort -u

flag

3 Answers

vote up 4 vote down check
svn log -v -r{2008-10-1}:HEAD | grep "^   A"
link|flag
thanks, good idea...just got to modify that search pattern a bit (the way you wrote it would return checkin comment lines with the word "A" in them. – Epaga Oct 6 '08 at 9:35
Yes, but a capital A with spaces around it is rather rare. You could use "^ A" – MattW. Oct 6 '08 at 9:57
wouldn't have been that rare. A good example would be this sentence. ;-) But yeah, the circumflex did the trick. – Epaga Oct 6 '08 at 10:51
vote up 1 vote down

Something like

svn log -v -r {"2008-01-01"}:HEAD . | grep ' A ' | sort -u

should get you going...

link|flag
vote up 1 vote down

If you use 'svn log -v -q' you get the filename and no log messages. This is a little bit faster over http:// and svn:// as the log messages are not transferred to you.

svn log --xml -v -q gives you the same information but in easy to parse xml. (This handles all corner cases on strange file names for you).

link|flag

Your Answer

Get an OpenID
or

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