nerdexam
CompTIA

CV0-004 · Question #43

Once a change has been made to templates, which of the following commands should a cloud architect use next to deploy an laaS platform?

The correct answer is D. git push. After editing templates locally and committing the changes with git commit, the next step is git push to send those commits to the remote repository. In a CI/CD pipeline, a push to the remote typically triggers the automated deployment process for the IaaS platform. git commit…

Deployment

Question

Once a change has been made to templates, which of the following commands should a cloud architect use next to deploy an laaS platform?

Options

  • Agit pull
  • Bgit fetch
  • Cgit commit
  • Dgit push

How the community answered

(61 responses)
  • A
    10% (6)
  • B
    5% (3)
  • C
    2% (1)
  • D
    84% (51)

Explanation

After editing templates locally and committing the changes with git commit, the next step is git push to send those commits to the remote repository. In a CI/CD pipeline, a push to the remote typically triggers the automated deployment process for the IaaS platform. git commit only saves changes locally. git pull and git fetch retrieve changes from the remote rather than sending them. git push is the action that initiates the upstream deployment workflow.

Topics

#Git commands#Infrastructure as Code (IaC)#Cloud deployment#Version Control

Community Discussion

No community discussion yet for this question.

Full CV0-004 Practice