如何使用 php 编写 svn 导出命令?
我想从我的服务器导出一些文件。为此我创建了一个 php 页面。如何在 php.ini 中编写 svn 导出命令
我从 nant 脚本调用这个 php 文件。 Nant脚本命令是这样的。我需要把它写在php脚本上。
<exec program="svn.exe" basedir="${svnexedir}" commandline="export --force "${tagrepo}/DevScripts/install.php/" "${localrepo}/myTest/DevScripts/install.php/"" />
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/"" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以搜索 PHP svn 模块。
或者,更简单(可能更好),只需使用 exec() 或类似的函数之一。
http://php.net/exec
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