>>>>> "AS" == Amos  <Shapira> writes:

AS> In continuation to my previous question about the vss2svn.pl
AS> script running out of memory - as far as I can see, this happens
AS> on a huge binary input file (803Mb).  I wonder how can I make the
AS> script skip this file since I don't actually care much about
AS> moving it into SVN.

I ran into a similar problem and I just replaced the file with a
README.  A caveat however is that my translation never did succeed,
but I don't think it was due to the changed file.  Something like
this:

for f in $(find . -size +300M); do
  mv $f $f.save
  echo "Large file replaced with this readme to satisfy vss2svn
conversion script." > $f
Done

I'm a complete vss noob though, so I wouldn't suggest taking my word for
it...

_______________________________________________
vss2svn-users mailing list
Project homepage:
http://www.pumacode.org/projects/vss2svn/
Subscribe/Unsubscribe/Admin:
http://lists.pumacode.org/mailman/listinfo/vss2svn-users-lists.pumacode.org
Mailing list web interface (with searchable archives):
http://dir.gmane.org/gmane.comp.version-control.subversion.vss2svn.user

Reply via email to