
Answer-first summary for fast verification
Answer: Create a development branch and push it to the Git server
The command `git checkout -b new-feature` creates a new development branch named 'new-feature' and pushes it to the Git server. This is a standard practice in version control to manage changes before deploying them to production environments. For more details, refer to the [Google Cloud Build documentation](https://codelabs.developers.google.com/codelabs/cloud-builder-gke-continuous-deploy/index.html#6).
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You are working on a pipeline hosted on GCP and preparing to deploy your working copies using Cloud Build. What does the command git checkout -b new-feature do in this context?
A
Create a production branch and push it to the Kubernetes
B
Create a development branch and push it to the Cloud Build server
C
Create a production branch and push it to the Git server
D
Create a development branch and push it to the Git server
No comments yet.