0
0
Azurecloud~5 mins

Azure Repos for source control - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Azure Repos?
Azure Repos is a set of version control tools that you can use to manage your code. It helps teams track changes and collaborate on software development.
Click to reveal answer
beginner
Name the two types of version control systems supported by Azure Repos.
Azure Repos supports Git (distributed version control) and Team Foundation Version Control (TFVC, centralized version control).
Click to reveal answer
beginner
How does Azure Repos help when multiple people work on the same code?
Azure Repos tracks changes from each person, helps merge their work, and keeps a history of all changes so conflicts can be resolved easily.
Click to reveal answer
intermediate
What is a pull request in Azure Repos?
A pull request is a way to ask team members to review and approve code changes before merging them into the main codebase.
Click to reveal answer
beginner
Why is it important to commit code changes frequently in Azure Repos?
Frequent commits make it easier to track progress, find bugs, and merge changes without conflicts. It keeps the project organized and safe.
Click to reveal answer
Which version control system is NOT supported by Azure Repos?
ASubversion (SVN)
BTeam Foundation Version Control (TFVC)
CGit
DBoth Git and TFVC
What is the main purpose of a pull request in Azure Repos?
ATo delete code from the repository
BTo clone the repository locally
CTo create a backup of the repository
DTo request code review and merge changes
Which of the following best describes Git in Azure Repos?
ADistributed version control system
BContinuous integration tool
CCloud storage service
DCentralized version control system
What happens when two people edit the same file in Azure Repos using Git?
AAzure Repos automatically deletes one person's changes
BGit merges changes and may ask to resolve conflicts
CThe repository locks the file to one user only
DBoth changes are ignored
Why should you write clear commit messages in Azure Repos?
ATo increase repository size
BTo confuse other team members
CTo help track what changes were made and why
DTo prevent code from being merged
Explain how Azure Repos supports team collaboration on code projects.
Think about how changes from different people are managed and reviewed.
You got /4 concepts.
    Describe the difference between Git and TFVC in Azure Repos.
    Consider how and where changes are saved and shared.
    You got /4 concepts.