I need a script to go through my working copy and for each file and folder dump its SVN revision and whether it is modified or not. Anything working out of the box?.. Need both Windows and Mac versions.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The

svn status -v --no-ignore

command should do exactly what you ask. (If you want to hide the unmodified files you can drop the -v. See svn help status for more options)

link|improve this answer
Excellent! Thanks a lot for the pointer! – Michael Pliskin Apr 26 '10 at 19:54
feedback

Your Answer

 
or
required, but never shown

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