0

I want to get the all folder list into file after certain revID in SVN using Batch file.

currently I am using the command:

svn.exe list <URL> -R>test.txt

using this command I have getting all folder and file in text file. Have you any way to get the only folder after certain revision ID.

thanks.

J. Steen
  • 15,470
  • 15
  • 56
  • 63
CrazyCoder
  • 772
  • 5
  • 11
  • 31

2 Answers2

0

Maybe you can use svn propset to set new properties for each folder, for example : svn_folder

Then you can get all folder based on properties like this:

 svn.exe propget svn_folder <URL> -R>test.txt

I don't know if there is another better solutions.

Iswanto San
  • 18,263
  • 13
  • 58
  • 79
0

Write in more free-form your requirements, if I translated they incorrectly, because "older list after certain revID in SVN" seems for me as white noise.

You want to get repository tree at the state on revision N? "After revision..." means "at the sate of any revision from N+1 to HEAD"

svn ls -R [-v] -r N URL, as written in svn help ls

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110