Import svn repository dump


/ Published in: DOS Batch
Save to your folder(s)

script imports svn dump into the repository


Copy this code and paste it in your HTML
  1. @ECHO OFF
  2. IF "%1"=="" (
  3. ECHO "Usage: %0 dump_file"
  4. GOTO END
  5. )
  6. svnadmin load . < %1
  7. :END

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.