I am in the process of doing a complex migration of 3 SVN repositories into 1 new one with a different structure.
I have just discovered that two of the repositories have thousands of blank commits "This is an empty revision for padding." all against the root and all without any author information. Unbelievable.
svnfiltereddump falls over on these commits because it needs an svn:author so I need a technique to get round this problem.
I'm wondering if I can use
svndumptool.py transform-revprop svn:author SOMETHING gareth.hughes input.dump utput.dump
but I can't figure out what the regular expression would be to match only an empty author field.
Otherwise I'm looking for ways to add an svn:author into about 8000 commits in a repository, not sequential. Or, a tool that can filter them out of a dump, after all they are all junk.
Many thanks