views:

173

answers:

1

Hi,

for our build process i need to know the "last changed" Revision of each file in a certain repository.

Any Ideas?

Kind regards, Flo

+1  A: 

svn info will output one line containing Last Changed Rev: which you could parse.

mghie
Perfect. svn info -R will do the trick - Thanks
Also check out the --xml switch
Wim Coenen