diff --git a/guides/v2.2/cloud/basic-information/starter-develop-deploy-workflow.md b/guides/v2.2/cloud/basic-information/starter-develop-deploy-workflow.md index c1677ad53bd..4f98f4fce11 100644 --- a/guides/v2.2/cloud/basic-information/starter-develop-deploy-workflow.md +++ b/guides/v2.2/cloud/basic-information/starter-develop-deploy-workflow.md @@ -41,10 +41,10 @@ This process assumes that you have set up your [local developer workspace]({{ pa For a new Starter Plan project, a `master` branch was cloned from the {{site.data.var.ece}} Git repository. To start branching and working with code, you need to clone the `master` branch to your local environment. The format of the Git clone command is: - - git fetch origin - git pull origin - +```bash +git fetch origin +git pull origin +``` The first time you start working in branches for your Starter project, you need to create a `staging` branch. This creates a code branch matching the `master` branch that deploys to a Staging environment to test configuration and code changes before deploying to the Production environment. Next, create branches from `staging` to develop code, add extensions, and configure 3rd party integrations. Anytime you need to develop custom code, add extensions, integrate with a 3rd party service, work in a development branch created from the `staging` branch. You will have four active Integration environments available. When you push an active branch, one of these Integration environments automatically deploys your code to test. @@ -52,13 +52,13 @@ Next, create branches from `staging` to develop code, add extensions, and config We walk you through the process when you [set up your local]({{ page.baseurl }}/cloud/setup/first-time-setup.html) environment. The format of the Git branch command is: - - git checkout - +```bash +git checkout +``` The format of the Magento Cloud CLI branch command is: - - magento-cloud environment:branch - +```bash +magento-cloud environment:branch +``` ![Branch from Master]({{ site.baseurl }}/common/images/cloud_workflow-branching.png)