Subversion export with PHP Script


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. //http://th.php.net/manual/en/function.svn-export.php
  2.  
  3. <?php
  4. $working_dir = '../';
  5. $new_working_dir = '/home/user/devel/foo/trunk';
  6.  
  7. svn_export($working_dir, $new_working_dir);
  8. ?>
  9.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.