从 PHP 读取 Mercurial 存储库

发布于 2024-08-15 15:04:10 字数 81 浏览 2 评论 0原文

我希望能够获取 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 技术交流群。

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

发布评论

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

评论(2

阳光的暖冬 2024-08-22 15:04:10

只需启动 hg cat -r; file 来自 php,您将在 stdout 中获取该文件。

Just launch hg cat -r <rev> file from php, you'll get the file in stdout.

隔纱相望 2024-08-22 15:04:10

也许运行

hg serve

服务器(localhost:8000)并与之交互可能是一个可行的选择。

Maybe running

hg serve

and interacting with the server (localhost:8000) could be a viable option.

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