This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Install-Module -Name Az -AllowClobber -Scope CurrentUser | |
| Install-Module -Name PSModuleDevelopment -AllowClobber -Scope CurrentUser | |
| Install-Module -Name PSFramework -AllowClobber -Scope CurrentUser | |
| Install-Module -Name AzureAD -AllowClobber -Scope CurrentUser | |
| Install-Module -Name Pester -RequiredVersion 4.10.1 -AllowClobber -Scope CurrentUser | |
| Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet' | |
| az extension add --name azure-devops |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #Wyswietl log gita jako nazwy komitow | |
| git log --pretty=format:"%s" | |
| #Clone repository to folder | |
| git clone [email protected]:whatever folder-name | |
| #Checkout to remote branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #Install Tool ([https://www.npmjs.com/package/tfx-cli](https://www.npmjs.com/package/tfx-cli)) | |
| npm install -g tfx-cli | |
| #Autoryzacja a nastepnie provide correct URL [**https://abilityplatform.visualstudio.com/DefaultCollection**](https://abilityplatform.visualstudio.com/DefaultCollection) and PAT token | |
| tfx login --authType pat | |
| #Publish task z bierzacego katalogu do wczesniej skonfigurowanego vsts | |
| tfx build tasks upload --task-path . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet' | |
| #Zainstlauje najnowsza wersje Azure Az | |
| az extension add --name azure-devops | |
| #Instlauje extension do zarzadzania Azure DevOps | |
| az login | |
| az devops configure --defaults organization=https://dev.azure.com/abilityplatform project="Ability Platform" | |
| #Loguje a nastepnie konfiguruje dostep do orgazniacji |