如何使用 php 编写 svn 导出命令?

发布于 2024-12-03 11:35:14 字数 310 浏览 0 评论 0原文

我想从我的服务器导出一些文件。为此我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

趁年轻赶紧闹 2024-12-10 11:35:14

您可以搜索 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文