在生产 Rails 机器中使用 GIT

发布于 2025-01-08 12:59:15 字数 145 浏览 1 评论 0原文

我的生产 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 技术交流群。

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

发布评论

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

评论(2

不必你懂 2025-01-15 12:59:15

使用 Capistrano 这样的专用部署系统怎么样?它解决了您试图避免的许多问题。

How about using a dedicated deployment system like Capistrano? It solves many of the issues you are trying to avoid.

毁梦 2025-01-15 12:59:15

不要在生产机器上留下本地更改,并且不存在冲突的风险。

生产安装应从专用分支/标签中提取(例如使用 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).

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