I know "list command" -> List directory entries in the repository ... but my problem is i have a large number of repository ... if i want to perform list command to each repository the result is large number of command ...and you must not forget enter the password for each command ... so it hard work and not logical
|
feedback
|
|
If you have shell access to the server that hosts your repositories (and read permission on the repository directories themselves), you could do something like this:
for i in /parent/path/of/repos/* ; do
# while not a perfect check for a repository, it's likely
# right unless you're doing something very weird.
if [-d "$i"] && [-f "$i/format"] ; then
svn ls "file://$i"
fi
done
You can also replace If you have to access the repositories remotely, you're stuck using the | |||
|
feedback
|