Correct answer & explanation
✓git clone: Creates a copy of a repository from a remote source
Git clone creates a local copy of a remote repo; git commit records changes with a message; git push uploads commits; git pull fetches and merges. Common confusions include swapping clone with commit or push with pull.
About these practice questions
This 200-901 question is part of Courseiva's 989-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
How Courseiva writes practice questions · Editorial policy
Same concept, more angles
1 more way this is tested on 200-901
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Match each CI/CD concept to its definition.
medium- ✓ A.Continuous Integration: The practice of automatically building and testing code changes frequently.
- ✓ B.Continuous Delivery: The practice of automatically deploying code changes to a staging or testing environment, ready for manual approval to production.
- ✓ C.Continuous Deployment: The practice of automatically deploying every code change that passes testing to production without manual intervention.
- D.Continuous Integration: The practice of automatically deploying code to production after tests pass.
- E.Continuous Delivery: The practice of merging code changes frequently and automatically testing them.
Why A: Continuous Integration (CI) focuses on merging and automated testing. Continuous Delivery (CD) ensures code is always ready for production deployment but requires manual approval. Continuous Deployment (CDep) automates deployment to production after tests pass. Common confusions involve swapping definitions of CI and CD or CDep.