This repository contains modules for the workshop on creating CI/CD pipelines using Azure pipelines.
-
Sign in to Azure DevOps using your personal microsoft account.
-
Create an organization. You can provide any name, make sure it's a unique one.
-
Create a project by clicking the
New Project
button.The project will hoist your pipeline repository.
-
Create a repository in the first project space for your extension code.
-
Import the repository into your Azure repository (We will upload the same code to the azure repository).
-
Click the
Import
button in the new repository window and add the git url of the current repository in the Clone URL field. -
Using the command line:
# Git clone the repository git clone https://github.com/Biswajee/Azure-Pipelines-Workshop.git # Remove the remote url for the cloned repo git remote remove origin # Add the new remote url from your azure devops extension repository git remote add origin https://<OrganizationName>@dev.azure.com/<OrganizationName>/<ProjectName>/_git/<AzureRepositoryName> git push -u origin --all
-
-
Check whether the code you've pushed got successfully updated in the azure devops respository.