When svn-load prompts user for input during rename confirmation it could display a lot of files at once (I got over 5000 lines when updating Zend Framework from 1.7.9 to 1.11.8). Such enormous listing requires at least paging, but ideally, distinct mode of operation that would store rename list to the file, so that user would run svn-load, get 'rename-file', edit it and then feed it to svn-load again.
Can you do this with a move map?
-m FILE, --move-map=FILE
Load a mapping of regular expression patterns to
lambda functions of match objects from FILE
that file via svn-load. So the workflow I was proposing would be something like this: > svn-load -t 1.11.8 https://...../vendor/ZendFramework current ~/src/ZendFramework-1.11.8 -M move.map # generate map > vim move.map # review / edit it > svn-load -t 1.11.8 https://...../vendor/ZendFramework current ~/src/ZendFramework-1.11.8 -m move.map # use move map