>
>  for rev in `svn log -r0:HEAD ${url}/${project} | \ 
>
>                     egrep "^r[0-9]+ |" | cut -d " " -f1`; do
>
>    svnrdump dump --incremental -r ${rev:1} ${url}/${project} >> 
> ${project}.dump
>
> done
>
  Basically, I am only dumping (incrementally) the revisions which actually 
>
> affect the path in question.
>
 
I have since discoved that incrementally dumping specific revisions via 
svnrdump is not
as safe as I previously thought. Some paths that were copied from outside 
sources did not
get included because I skipped the revision in which it was copied from.
 
So to correct myself and save others frustration - don't skip revisions 
with svnrdump (as
in my example above) unless you absolutely know that you won't be missing 
anything.
 
Bryon

Reply via email to