[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Splitting out project from repo

From: Bryon Winger <bryonwinger_at_gmail.com>
Date: Mon, 8 Apr 2013 09:12:11 -0700 (PDT)

>
> 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
Received on 2013-04-08 18:12:47 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.