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 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
Reference
이 문제에 관하여(CLI 및 PowerShell을 사용하여 Azure DevOps에서 리포지토리 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aidapsibr/create-a-repo-in-azure-devops-using-the-cli-8l6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)