使用 git 和免费 git 存储库部署 PHP 项目
如何使用 Git 部署现有的 PHP 项目以及最好的免费 git 存储库是什么?
How can I deploy an existing PHP project using Git and what is the best free git repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 github 来实现此目的
You can use github for this purpose
查看 PHP Fog 的免费 Git 部署工具。
Checkout the free Git deploy tool from PHP Fog.
人们普遍认为 Github 是最好的。
当我上次做类似的事情时,我只是通过 SSH 连接到服务器,执行了 git clone,然后让 cron 从我的生产“分支”运行拉取和更新。您需要使用服务器的公钥设置 git 存储库,但说明非常简单(我发现 Windows one 立即关闭(滚动到底部),但它仍然有效)。
Github is generally considered best.
When I last did something like that, I simply SSH'd to the server did
git clone
and then had cron run a pull and update from my production "branch". You'll want to set up your git repository with your public key for the server, but instructions for that are pretty simple (I found the Windows one right off (scroll to the bottom), but it still works).如果您需要免费的私人存储库,您应该使用 BitBucket。
查看此 PHP 脚本以从 Git 存储库进行部署:
https://github.com/Lyquix/php -git部署
If you need a private repo for free you should use BitBucket.
Check out this PHP script for deploying from Git repositories:
https://github.com/Lyquix/php-git-deploy