Keith McGee wrote:
I just created a Dumpfile for our VSS. Now when I try to added to our SVN Repository I get a message in the command prompt. Malformed Dumpfile header. Can someone help??? I’m typing in the command prompt the following command:

Svnadmin load c:\repositories\intech “vss2svn-dumpfile.txt”

The problem is your syntax. The dumpfile is *not* an argument passed to svnadmin. Svnadmin only reads stdin. Instead of the above, run this commmand:

 svnadmin load c:\repositories\intech < vss2svn-dumpfile.txt

(Note the < redirection)

HTH,

-Nathan

_______________________________________________
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