Query: svn_export
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SVN_EXPORT(3) 1 SVN_EXPORT(3) svn_export - Export the contents of a SVN directorySYNOPSISbool svn_export (string $frompath, string $topath, [bool $working_copy = true], [int $revision_no = -1])DESCRIPTIONExport the contents of either a working copy or repository into a 'clean' directory.PARAMETERSo $frompath - The path to the current repository. o $topath - The path to the new repository. o $working_copy - If TRUE, it will export uncommitted files from the working copy.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 svn_export(3) example <?php $working_dir = '../'; $new_working_dir = '/home/user/devel/foo/trunk'; svn_export($working_dir, $new_working_dir); ?>SEE ALSOsvn_import(3). PHP Documentation Group SVN_EXPORT(3)
Related Man Pages |
---|
isset(3) - php |
svn_add(3) - php |
setrawcookie(3) - php |
svn_cleanup(3) - php |
svn_commit(3) - php |
Similar Topics in the Unix Linux Community |
---|
Svn export issue |