CLI 및 PowerShell을 사용하여 Azure DevOps에서 리포지토리 만들기

3780 단어 devopspowershellazure

This is a part of a series on using VM images in Azure compute to build lightweight application deployment options as opposed to PaaS options such as App Services and more complex IaaS such as Azure Kubernetes Service.




전제 조건


  • Azure 계정
  • Azure DevOps 계정 및 조직
  • 자식
  • 파워쉘
  • Azure CLI
  • Azure DevOps CLI

  • 먼저 Azure CLI( az login )에 올바른 계정으로 로그인했는지 확인합니다. DevOps 확장이 있는 경우 해당 계정에서도 인증됩니다.

    이 작업을 제품 코드 및 백로그와 별도로 유지하려면 먼저 새 Azure DevOps 프로젝트를 만들어 보겠습니다. 이 스니펫에서는 내 조직인 "psibrorg"를 사용하고, 이를 자신의 조직으로 바꾸고 프로젝트를 공개로 둘지 아니면 비공개로 만들지 선택합니다.

    az devops project create --name "Azure IaaS Series" --org https://dev.azure.com/psibrorg --visibility public
    

    우리가 새 프로젝트를 만들 때 그것은 우리에게 잘 작동하는 같은 이름의 기본 git 저장소를 만듭니다.

    mkdir "Azure IaaS Series"
    git init
    
    # Create a readme file
    "#Azure IaaS Series" > readme.md
    
    git add .
    git commit -m "Initial commit"
    
    # Add the default repo as the upstream origin
    git remote add origin (az repos list --project "Azure IaaS Series" --org https://dev.azure.com/psibrorg --query [0].webUrl)
    
    git push -u origin master
    

    좋은 웹페이지 즐겨찾기