
Explanation:
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.
Ultimate access to all questions.
No comments yet.
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