从 PHP 读取 Mercurial 存储库
我希望能够获取 Mercurial 存储库中的文件(例如自述文件)并将其显示给用户。 这在 PHP 中可能吗?我确实在服务器上安装了命令行 hg 。
I want to be able to take a file in a Mercurial repository (Readme for example) and display it to the user.
Is this possible in PHP? I do have command line hg installed on the server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需启动
hg cat -r; file
来自 php,您将在 stdout 中获取该文件。Just launch
hg cat -r <rev> file
from php, you'll get the file in stdout.也许运行
服务器(localhost:8000)并与之交互可能是一个可行的选择。
Maybe running
and interacting with the server (localhost:8000) could be a viable option.