尝试编写 subversion 提交后脚本将 PHP tu 导出到公共文件夹
我正在尝试使用 subversion 和提交后脚本部署 PHP 应用程序。我一直在寻找如何编写提交后脚本,但我无法让它工作。
配置:我在我的服务器(OVH)上安装了一个 svn 文件夹,位于 homeX.XX/svn/test/
我的提交后脚本应该导出到 homeX.XX/dev/
>
使用时如何编写正确的路径
#!/bin/bash
mkdir dev
chmod 777 dev
svn export svn+ssh://[email protected]/homeX.XX/XXX/svn/test dev
我不知道在POST-COMMIT 脚本中 。我一直在寻找答案,但没有找到任何...
I am trying to deploy a PHP application using subversion and post-commit script. I've been looking for how to write post-commit script but i can't get it to work.
Configuration : I have a svn folder installed on my server (OVH) in homeX.XX/svn/test/
My post-commit script should EXPORT to homeX.XX/dev/
I don't know how to write the proper path when using
#!/bin/bash
mkdir dev
chmod 777 dev
svn export svn+ssh://[email protected]/homeX.XX/XXX/svn/test dev
in my POST-COMMIT script. I've been looking for answers but did not find any...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 SVN 文档(此处):
我已经被这个问题困扰过好几次了。基本上,编写 SVN 提交挂钩的最简单方法(虽然不是很干净)是将您需要的所有文件和目录硬编码为绝对路径。
因此,在这种情况下,您的脚本将类似于:
From the SVN documentation (here):
I've been stung by this problem a few times. Basically the easiest way to write SVN commit hooks, although not very clean, is to hardcode all files and directories that you need as absolute paths.
So in this case, your script would look something like: