How to get svn log from remote repository without checking files out

Viewed 3326

I have over 100 repos and want to retrieve their full log without checking these repos into my computer.

I know svn log is producing the log file but how can I pass url, username, pass as args?

2 Answers
 svn log -l 1 svn+ssh://<repo_address>/trunk

that can be different from your local repo ./trunk

you can encapsulate it in a bash script within a "for loop" of each repo reading from a file

while read repo
do
  svn log -l  1 "$repo"
done < list_of_repo.txt
Related