在生产 Rails 机器中使用 GIT
我的生产 Rails 项目应该使用 GIT 吗?我会很容易更新 服务器并推送热修复程序,但是如果我在拉取期间发生冲突怎么办? 如果我不小心出错,就会导致一些停机时间。
您对如何在 GIT 存储库和 GIT 存储库之间同步有何建议?生产?
谢谢
Should my production Rails project use GIT? it will be easy for me to update the
servers and to push hot fixes, but what if I'll have a conflict during a pull?
and if I'll accidentally pull something wrong it make cause some downtime.
What is your advice on how to synch between the GIT repository & production?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Capistrano 这样的专用部署系统怎么样?它解决了您试图避免的许多问题。
How about using a dedicated deployment system like Capistrano? It solves many of the issues you are trying to avoid.
不要在生产机器上留下本地更改,并且不存在冲突的风险。
生产安装应从专用分支/标签中提取(例如使用 gitflow ,生产机器从最新标签或简单地从 master 中提取) - 不是您经常推送到的分支(开发,如果您使用 git-flow)。
Don't leave local changes on your production machines, and there is no risk of conflicts.
Production installs should pull from a dedicated branch/tag (e.g. use gitflow, production machines pull from the latest tag or simply master) - not the branch you regularly push to (develop, if you use git-flow).