0

I want to export some files from my server. For that I created one php page. How can I write svn export command in php.

I call this php file from a nant script. Nant script command is like this. I need to write it on php script.

    <exec program="svn.exe" basedir="${svnexedir}" commandline="export  --force  "${tagrepo}/DevScripts/install.php/" "${localrepo}/myTest/DevScripts/install.php/"" />

1
  • What is <exec ...> supposed to be...? Commented Sep 6, 2011 at 4:38

1 Answer 1

1

You can either search around for a PHP svn module.

Or, easier (potentially better), just use exec() or one of the functions like it.

http://php.net/exec

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.