将git存储库发布到远程http服务器
我在一个 git 存储库上工作,我们在其中构建了一个 php 社区,但我需要在某个地方显示它,所以我正在寻找一种方法,当我推送到存储库时自动将我的文件上传到远程 http 服务器。
谢谢/维克多
I work on a git repository where we build an php community but i need to show it somewhere so I am looking for a way to automatic upload my files to a remote http server when i push to the repository.
Thanks /Victor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与 Subversion 一样,Git 也提供了钩子机制。查看 githooks 手册页。基本上,您只需要为 PHP 应用程序编写一个签出和部署脚本作为提交后挂钩。
对于 github,你应该看看他们的 webhooks 机制。
Like Subversion Git offers a hook mechanism, too. Check out the githooks man page. Basically you just need to write a checkout and deploy script for your PHP application as a post-commit hook.
For github you should have a look at their webhooks mechanism.
如果第二台服务器上没有单独的 git 存储库,我将从存档中导出文件:
然后使用 sftp 与远程服务器同步:
您可以将这个过程自动化为构建脚本(例如 Phing),
我们的绑定作为提交后的 git hook,就像之前提到的那样。
If there is no separate git repo on the second server, I would export files from archive:
And then used sftp to synchronize with remote server:
You may automate this process as a build script (e.g. Phing),
our bind as a post commit git hook, like it has been mentioned before.