Posts

Showing posts with the label repository

How to Create Azure Repository - Azure DevOps - CI/CD Pipeline

Azure Repository           Azure Repos is a cloud-based source control service offered as part of Azure DevOps . It provides both Git and Team Foundation Version Control ( TFVC ) repositories for versioning and managing your codebase. Here are the steps to create an Azure Repo: Steps : Sign in to the Azure DevOps portal at  Azure Login  using your Microsoft account. Click on " + New project " button to create a new project. Provide a name and description for your project, select either Git or TFVC for version control, and then click on " Create ". On the next screen, you'll see the overview page for your newly created project. From here, you can navigate to the " Repos " tab to view your codebase. By default , a new Git repository will be created when you create a new project . However, if you selected TFVC for version control, you'll need to manually create a team project collection first before creating a new repository. To add f...