Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 capistrano 的新手,我能够成功地将我的 ruby 应用程序从 git 部署到服务器,但不是直接部署代码,而是创建了 2 个目录,即current和release。如何从中走出来?
这很正常。这就是 capistrano 的工作原理。
每次部署新版本时,都会在发布文件夹中创建。部署完成后,当前符号链接将更新为指向新创建的版本。
这边走