6.0 Automation

Git & CI/CD Pipelines Practice Questions

Version control with Git and CI/CD pipeline concepts for network automation.

One solved question, so you can see how these are marked

Which Git command records staged local code modifications into the repository history alongside a descriptive log message?

git commit -m "Message"

git commit -m "Message" takes staged changes (added via git add) and saves them as a snapshot in the local Git repository commit history.

Every question in the set below is marked like this. The answers stay hidden until you pick one.