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…
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)- A10% (6)
- B5% (3)
- C2% (1)
- D84% (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
Community Discussion
No community discussion yet for this question.