正解:B
Version control systems (VCS) like Git provide numerous benefits, with one of the primary ones being the ability to track development changes. This means that every change made to the codebase is recorded along with information about who made the change, when it was made, and why. This allows teams to collaborate effectively, revert to previous versions if necessary, and understand the history of the project.
Other benefits of version control include:
* Collaboration: Multiple developers can work on the same project simultaneously without overwriting each other's work.
* Branching and Merging: Developers can work on different features or bug fixes in isolation and merge their changes back into the main codebase once they are ready.
* Backup: The entire history of the project is stored in the VCS, providing a backup that can be restored if necessary.
References:
* Cisco DevNet Associate Certification Guide
* Pro Git Book, Chapter on Getting Started