devops 持续集成


原文链接: devops 持续集成

什么是持续集成

//开发环境
env=dev
//测试环境
env=staging
//生产环境
env=production

represents one of the following steps in a continuous delivery workflow:

Review
Development
Staging
Production

local remote server


master ==> Pushes to master ==> deployed to prod
staging ==> Pushes to staging ==> deployed to staging
dev ==> Pushes to dev ==> deployed to dev

`