Mercurial hg 使用 php POST 到远程服务器
我在 bitbucket 有一个帐户,这就是我想要实现的目标。
ME --push--> bitbucket <--post--> server
服务器到 bitbuck 没问题。
我尝试
<?php `hg pull -u`;
在我的服务器中设置像这样的 POST URL。这是正确的方法吗?我尝试应用反勾号来执行命令。
I have an account at bitbucket, here is what i want to achieve.
ME --push--> bitbucket <--post--> server
server to bitbucket is fine.
I try to setup the POST URL like this
<?php `hg pull -u`;
in my server. Is this the correct way? i try to apply the back tick to execute the command.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用
system()
或exec()
来执行此操作,因为这是标准操作过程。I would suggest doing this with
system()
orexec()
, simply because that's the standard operation procedure.